1. 程式人生 > >maven jdk 版本配置

maven jdk 版本配置

方式一:settings.xml 配置

開啟專案目錄下conf/settings.xml,找到 <profiles> 節點,新增如下程式碼

<profiles>   <profile>     <id>development</id>     <activation>       <jdk>1.8</jdk>       <activeByDefault>true</activeByDefault>     </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>

方式二:pom.xml 配置,配置完成後,需要執行一次更新專案配置的動作。選中專案 --> 右鍵 --> Maven --> Update Project

<build>   <plugins>     <plugin>       <groupId>org.apache.maven.plugins</groupId>       <artifactId>maven-compiler-plugin</artifactId>       <configuration>         <source>1.7</source>         <target>1.7</target>       </configuration>     </plugin>   </plugins> </build>