码迷,mamicode.com
首页 > 系统相关 > 详细

解决eclipse+MAVEN提示One or more constraints have not been satisfied 的问题

时间:2016-10-10 13:24:49      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

问题现象:

编译工程后总该是显示下面两个错误:

  One or more constraints have not been satisfied.

      Deployment Assembly跟java版本不匹配

解决方案:

在pom.xml中添加下面内容,然后Maven->update project

    <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>

 

解决eclipse+MAVEN提示One or more constraints have not been satisfied 的问题

标签:

原文地址:http://www.cnblogs.com/sm21312/p/5945183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!