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

配置Eclipse使用maven构建项目默认JDK为1.8

程序员文章站 2022-03-04 08:14:08
...

在maven的setting文件profiles标签内添加如下配置,即可在以后的所有项目构建时默认使用jdk 1.8。

<profile>    
      <id>jdk-1.8</id>    
      <activation>    
             <activeByDefault>true</activeByDefault>    
             <jdk>1.8</jdk>    
      </activation>    
      <properties>    
            <maven.compiler.source>1.8</maven.compiler.source>    
            <maven.compiler.target>1.8</maven.compiler.target>    
            <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>    
      </properties>    
</profile>

 

转载于:https://my.oschina.net/pipimao/blog/1616949