欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Eclipse创建maven项目时报错: maveneclipse 

程序员文章站 2022-06-20 10:50:57
...
maven-resources-plugin:2.5 or one of its dependencies could

Eclipse创建maven简单项目时,报错:Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5

---------------------

本文来自 xuefeng0707 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/xuefeng0707/article/details/42157311?utm_source=copy
本人解决方法:
修改settings.xml,添加:
<mirror>         <id>Central</id>         <url>http://repo1.maven.org/maven2</url>         <mirrorOf>central</mirrorOf>     </mirror>
而后删除项目重新创建,或者Force Update

---------------------

本文来自 xuefeng0707 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/xuefeng0707/article/details/42157311?utm_source=copy
相关标签: maven eclipse