maven从SVN下载新项目时,pom文件报错,找不到各种jar包

pom文件提示错误,信息如下

Description    Resource    Path    Location    Type
Failure to transfer com.thoughtworks.xstream:xstream:jar:1.4.3 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 com.thoughtworks.xstream:xstream:jar:1.4.3 from/to central (http://repo.maven.apache.org/maven2): No response received after 60000    pom.xml    /testweb    line 1    Maven Configuration Problem

或者

1.Failure to transfer org.apache.maven.plugins:maven-surefire-plugin

2.Libraries中maven工种显示某个jar错误

解决的方案 如下:

1 删除m2\repository 所有 .lastUpdated为扩展名的文件。2和3操作其中一种方法就可以

2 打开cmd 在 工程目录执行 mvn clean install -U ,注意U 大写

3 在MyEclipse最上方标签点击project 再点击clean,弹出选择框,勾选Clean projects seleted below,选中模块clean的工程项目。

  

总结

这个问题一般发生在 新建工程时

现象是 Pom 文件第一行提示出错,各种找不到jar

这个问题是由于 .lastUpdated 文件引起的

猜你喜欢

转载自www.cnblogs.com/talentxiaowei/p/9049389.html