欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何将maven的默认JRE1.5改成1.7修改方法

程序员文章站 2022-06-04 22:00:43
...
1、打开安装是的setting.xml文件(apache-maven-3.2.2\conf)
2、找到profiles标签(可以使用ctrl+f进行查找)
3、加入下面配置即可
<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>