Eclipse 创建maven项目 报错 one or more constraints have not been satisfied
Posted Draymonder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse 创建maven项目 报错 one or more constraints have not been satisfied相关的知识,希望对你有一定的参考价值。
首先 在 pom.xml > plugins 中添加
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF8</encoding> </configuration> </plugin>
注意 version 应该挑选下面网址的最新版本
否则会报错奇葩错误..
https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin
以上是关于Eclipse 创建maven项目 报错 one or more constraints have not been satisfied的主要内容,如果未能解决你的问题,请参考以下文章
用eclipse创建一个maven管理的项目,创建完成后pom.xml报错!!急求怎么解决!!