是什么原因导致Eclipse中的导入Maven项目默认使用Java 1.5而不是Java 1.6,我怎样才能确保它没有?
作者:互联网
我导入了一个Maven项目,它使用了Java 1.5,尽管我已经将1.6配置为我的Eclipse默认Preferences-> Java-> Installed JREs.
当我将Maven项目更改为使用1.6 JRE时,它仍然存在从项目使用Java 1.5时遗留的构建错误(我之前在I have build errors with m2eclipse but not with maven2 on the command line – is my m2eclipse misconfigured?中描述了这些构建错误)
我要删除该项目并再次尝试,但我想确保这次它从一开始就使用Java 1.6,看看这是否消除了构建问题.
如何在导入项目时确保项目使用Java 1.6?
解决方法:
m2eclipse插件不使用Eclipse默认值,m2eclipse插件从POM导出设置.因此,如果您希望将Maven项目配置为在Eclipse下导入时使用Java 1.6设置,请正确配置maven-compiler-plugin,如我已经建议的那样:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
如果您的项目已导入,请更新项目配置(右键单击项目,然后单击Maven V Update Project Configuration).
标签:java,eclipse,maven-2,build-error,m2eclipse 来源: https://codeday.me/bug/20190917/1809635.html