欢迎来到我的的博客园,祝大家学有所成,早点实现自己的人生理想。

一次性解决Intellij IDEA maven 自动跳到1.5的JDK

说明:文章学习自:https://blog.csdn.net/Zereao/article/details/77427989

一、找到Setting.xml文件

  打开setting.xml

  说明,该文件位于:{IntelliJIDEA安装目录}\plugins\maven\lib\maven3\conf\settings.xml

 

二、修改profiles节点

<profiles>  
    <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>  
</profiles>  

 

三、完成操作。

posted @ 2018-04-18 18:08  宋兴柱  阅读(2962)  评论(0编辑  收藏  举报