两种方法:
1.在maven的配置文件settings.xml中的标签里添加如下代码,设置默认JRE编译版本为1.7
<profile>
<id>jdk-1.7</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.7</jdk>
</activation>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
</properties>
</profile>
2.在pom.xml的中添加如下代码,修改maven默认的JRE编译版本,1.7代表JRE编译的版本。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
<plugin>
我们知道maven中的功能都是插件提供的,而maven本身内置了基本插件,其中编译器插件是其中的一个,所以才有了默认的jdk.