导入maven项目pom.xml文件报错

来源:互联网 发布:lvmh招聘 知乎 编辑:程序博客网 时间:2024/06/01 10:43

导入maven项目pom文件报错如下:

Execution default-resources of goal org.apache.maven.plugins:maven-resources-plugin:2.5:resources failed: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failure to transfer commons-cli:commons-cli:jar:1.0 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact commons-cli:commons-cli:jar:1.0 from/to central (http://repo.maven.apache.org/maven2): connection timed out to http://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (org.apache.maven.plugins:maven-resources-plugin:2.5:resources:default-resources:process-resources)

解决方法:
对于Windows操作系统,执行
cd %userprofile%\.m2\repository
for /r %i in (*.lastUpdated) do del %i

然后在项目名右击,选择maven->update project,即可。

0 0
原创粉丝点击