[关闭]
@tsing1226 2016-12-28T19:04:05.000000Z 字数 385 阅读 903

maven

创建maven项目jdk默认是1.5修改

标签(空格分隔): 未分类


在maven的setting.xml中配置

 <profiles>
 <profile>
      <id>jdk-1.7</id>
      <activation>
        <activeByDefault>true</activeByDefault> 
        <jdk>1.7</jdk>
      </activation>
     <properties>    
        <maven.compiler.source>1.7</maven.compiler.source>    
        <maven.compiler.target>1.7</maven.compiler.target>    
        <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>    
    </properties>    
    </profile>

  </profiles>
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注