我正在使用eclipse mars-2。我想在Windows中创建一个新的maven spring boot项目。但是我得到了像
这样的错误Could not calculate build plan: Plugin org.apache.maven.plugins:maven-war-plugin:2.2
or one of its dependencies could not be resolved: Failed to read artifact
descriptor for org.apache.maven.plugins:maven-war-plugin:jar:2.2
Plugin org.apache.maven.plugins:maven-war-plugin:2.2 or one of its dependencies
could not be resolved: Failed to read artifact
descriptor for org.apache.maven.plugins:maven-war-plugin:jar:2.2
任何人都可以帮我解决这个问题吗?
答案 0 :(得分:0)
您还可以执行以下步骤。有时它有帮助
.m2/repository/
文件夹mvn clean install
mvn build
答案 1 :(得分:0)
当您安装ECLIPSE或STS之类的UDE时,会生成一个.m2
文件夹,其中包含settings.xml
。
在您的系统中安装mavan后,您将在其中获得settings.xml。
您只需要让IDE知道它必须使用常规的settings.xml
即可,您可以通过删除用户文件夹中的.m2
文件来清理它,然后进行安装。
现在您可以开始编写代码了!!!