RapidClipse 错误
RapidClipse Error
我是 RapidClipse 的新手。我尝试了 运行 它并得到了这个错误。
Errors occurred during the build.
Errors running builder 'Maven Project Builder' on project 'test2'.
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
请帮忙。
RapidClipse 项目是使用 maven 插件构建的 maven 项目。
'Maven Project Builder' 本身使用了一些额外的插件,其中包括 "maven-resources-plugin".
如果插件在本地存储库中不存在,maven 会在远程存储库中搜索它并尝试自动将其下载到本地存储库(默认位置:用户主目录中的 .m2/repository
文件夹)。
此过程在此失败。
您可以手动触发解析和下载过程:
确保互联网连接正常,必要时代理设置正确。
在 ProjectManagement 或 Project Explorer 中右键单击 Rapidclipse 项目并转到 Maven
- Update project
激活复选框 Force Update of Snapshots/Releases
并使用 OK
完成对话框
之后,项目的构建过程应该可以正常工作。
我是 RapidClipse 的新手。我尝试了 运行 它并得到了这个错误。
Errors occurred during the build.
Errors running builder 'Maven Project Builder' on project 'test2'.
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
请帮忙。
RapidClipse 项目是使用 maven 插件构建的 maven 项目。 'Maven Project Builder' 本身使用了一些额外的插件,其中包括 "maven-resources-plugin".
如果插件在本地存储库中不存在,maven 会在远程存储库中搜索它并尝试自动将其下载到本地存储库(默认位置:用户主目录中的 .m2/repository
文件夹)。
此过程在此失败。
您可以手动触发解析和下载过程:
确保互联网连接正常,必要时代理设置正确。
在 ProjectManagement 或 Project Explorer 中右键单击 Rapidclipse 项目并转到
Maven
-Update project
激活复选框
Force Update of Snapshots/Releases
并使用OK
完成对话框
之后,项目的构建过程应该可以正常工作。