IDEA中使用M构建项目是Target bytecode version自动变为1.5

项目场景:

每次修改pom.xml刷新之后,Target bytecode version就会自动自动变为1.5

问题描述:

IDEA中使用M构建项目是Target bytecode version自动变为1.5_第1张图片

原因分析:

我的是因为maven中没有指定jdk,所以才会扫描为默认的jdk版本

解决方案:

在pom.xml中添加maven-compiler-plugin

        
                maven-compiler-plugin
                3.5.1
                
                    ${java.version}
                    ${java.version}
                    UTF-8
                
      


你可能感兴趣的:(gulimall遇到的问题,spring,boot)