one or more constraints have not been satisfied

maven项目倒入后problem提示:one or more constraints have not been satisfied。


1、有可能是你的jdk版的过低了。如下

      
   org.apache.maven.plugins
maven-compiler-plugin
2.3.2

1.6
1.6


 你的pom.xml文件里的maven-compiler-plugin设置编译是1.6 ,但项目中的编译可能是1.7的,所有统一一下。




2、在你的pom.xml文件下没有添加:

    
    org.apache.maven.plugins
maven-compiler-plugin
2.3.2

1.7
1.7

     这句话所导致的,添加即可。

你可能感兴趣的:(maven)