源1.3中不支持Netbeans Maven注释,使用源5

时间:2013-04-09 16:13:41

标签: maven netbeans compiler-construction maven-plugin

在使用Netbeans 6.7中的Maven构建项目时,我收到以下错误消息:

Error   annotations are not supported in -source 1.3   (use -source 5 or higher to enable annotations)

我已经在this thread上看到我需要在我的POM.xml中添加maven-compiler-plugin配置,但我不想对每个项目都这样做。我可以在一个影响我所有maven项目的中心位置设置它吗?在settings.xml中以某种方式?

我已经将Netbeans配置为使用Maven 3.0.3,而我的JAVA_HOME指向JDK 1.5。

1 个答案:

答案 0 :(得分:0)

即使它很安静,使用Netbeans在每个项目中进行配置:

  • 右键点击您的项目,
  • 选择«属性»,
  • 在项目属性窗口中选择«sources»,
  • 选择«源/二进制/格式»为1.3
  • 点击“确定”将正确更新您的pom。

更好的方法是使用(inheritance in poms)。

在父pom.xml中配置插件:

        <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>