首页 > 其他 > 详细

maven 添加支持编译jdk1.7

时间:2014-11-07 18:46:26      阅读:169      评论:0      收藏:0      [点我收藏+]
 1.在<profiles>元素内增加如下内容
   <profile>
    <id>jdk17</id>
    <activation>
    <activeByDefault>true</activeByDefault>
    <jdk>1.7<bubuko.com,布布扣/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>

2.在<activeProfiles> 元素内增加<activeProfile>jdk17</activeProfile> 

maven 添加支持编译jdk1.7

原文:http://www.cnblogs.com/feiye512/p/4081869.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!