我正在使用Maven 2.2.0和Eclipse Juno。我正在尝试将现有的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.5
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.5
然后我尝试运行clean install命令。
构建成功。
即使在那之后,我也面临同样的错误。
任何人都可以帮我解决这个问题。
先谢谢。
答案 0 :(得分:0)
我刚刚解决了这个问题。
添加了<localRepository>${user.home}/.m2/repository</localRepository>
正如我在.m2存储库中已经存在2.5文件夹一样,所以添加它以便再次停止从存储库下载。
在日食 - window--pref--maven--check the path for settings.xml
。它应该是有效的路径。
它解决了我的问题。