關於maven一updateProject專案的jdk就變成1.5或者時1.6的
阿新 • • 發佈:2018-11-12
一、在pom.xml中的<build><plugins><plugin>下加入<configconfiguration><source>1.7</source><target>1.7</target>這兩個配置就可以了
二、修改maven的預設jdk配置,找到maven的conf\setting.xml(maven庫所在)檔案中找到jdk配置的地方,
<profile>
<id>jdk1.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>