在Eclipse中为Maven项目设置默认的Java合规性级别

时间:2013-05-28 17:30:29

标签: java eclipse maven maven-3

Maven的默认合规级别是1.5,每次我在Eclipse中更新maven项目时,它都会将合规级别从1.6恢复到1.5,这对我来说真的很烦人。

我知道我可以在POM文件中将目标设置为1.6,但问题是我不能在父POM中设置它并期望孩子继承它。所以我必须为每个Maven模块做这件事。如何在我的Maven项目或整个eclipse中设置一次“生命周期”而不修改每个Maven模块!?

4 个答案:

答案 0 :(得分:12)

  

我知道我可以在pom文件中将目标设置为1.6,但问题是我不能在父pom中设置它并期望孩子继承它。

在父pom中设置<source><target>版本确实有效。

例如,在我的父母pom中,我有:

<pluginManagement>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>2.3.2</version>
      <configuration>
        <source>1.6</source>
        <target>1.6</target>
        <encoding>UTF-8</encoding>
      </configuration>
    </plugin>
  </plugins>
</pluginManagement>

如果您遇到问题,可能需要检查:

  • 子项指定父项的正确版本;
  • 父pom指定了sourcetarget值;
  • 您已在父级上运行mvn install;和
  • 子项目中的
  • mvn help:effective-pom显示预期的源/目标值。

修改poms后,您可能需要选择两个项目并使用 Maven-&gt; Update Project

答案 1 :(得分:2)

这对我有用..

<build>
<finalName>ProjectName</finalName>
<plugins>
   <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-compiler-plugin</artifactId>
       <version>2.3.1</version>
       <configuration>
           <source>1.6</source>
           <target>1.6</target>
       </configuration>
   </plugin>
</plugins>
</build>

答案 2 :(得分:2)

另一种方法(如果你还没有定义编译器插件)是在 pom 文件中设置这些属性:

<properties>
  <maven.compiler.source>1.8</maven.compiler.source>
  <maven.compiler.target>1.8</maven.compiler.target>
</properties>

详细信息https://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html

答案 3 :(得分:-1)

转到项目的pom.xml,然后在标签之间插入。然后eclipse插件(如m2eclipse)应该重建工作区。

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <encoding>UTF-8</encoding>
            </configuration>
        </plugin>

    </plugins>
</build>

注意:这是项目级别的,因为只有项目的pom.xml受到影响。