默认情况下,Maven 2使用JDK 1.4,Maven 3使用JDK 1.5编译项目,该项目非常旧。 幸运的是,Maven带有一个Compiler Plugin ,它告诉Maven用特定的JDK版本编译项目源代码。
解
直接配置插件编译器。 (使用Maven 2和3测试)
pom.xml
<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
或者,通过属性值进行配置。 (使用Maven 3进行测试)
pom.xml
<properties>
<maven.compiler.target>1.6</maven.compiler.target>
<maven.compiler.source>1.6</maven.compiler.source>
</properties>
参考文献
翻译自: https://mkyong.com/maven/how-to-compile-maven-project-with-different-jdk-version/