当使用Netbeans 6.7中的Maven构建我的项目时,我得到这些错误消息:
Error annotations are not supported in -source 1.3 (use -source 5 or higher to enable annotations)
我已经看到在这个线程,我需要添加一个maven编译器插件配置到我的POM.xml,但我不想这样做每个项目。我是否可以将其设置在一个影响所有maven项目的中心位置?在settings。xml中?
我已经配置Netbeans使用Maven 3.0.3,我的JAVA_HOME指向JDK 1.5。
即使使用Netbeans在每个项目中配置它非常简单:
- 右键单击你的项目,
- 选择«属性», 在项目属性窗口中选择«sources»,
- 选择«source/binary/format»到1.3 单击OK将正确更新您的pom。
一个更好的方法是使用(继承)。
在父文件中配置插件:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>parent-pom</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>parent-pom</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.3</source>
<target>1.3</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
之后,你的模块可以这样继承这个行为:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.mycompany</groupId>
<artifactId>parent-pom</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>mavenproject1</artifactId>
<packaging>jar</packaging>
<name>mavenproject1</name>