maven设置默认JDK版本

来源:互联网 发布:js文件 编辑:程序博客网 时间:2024/05/16 09:54
  1. 安装目录下的conf/setting.xml中profiles标签下  

  2. <profile>  
  3.     <id>jdk-1.7</id>  
  4.     <activation>  
  5.         <activeByDefault>true</activeByDefault>  
  6.         <jdk>1.7</jdk>  
  7.     </activation>  
  8.     <properties>  
  9.         <maven.compiler.source>1.7</maven.compiler.source>  
  10.         <maven.compiler.target>1.7</maven.compiler.target>  
  11.         <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>  
  12.     </properties>   
  13. </profile>
0 0
原创粉丝点击