Maven 在新版eclipse报错的解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven 在新版eclipse报错的解决相关的知识,希望对你有一定的参考价值。
转自Stack Overflow
Remove all your failed downloads:
Linux:
find ~/.m2 -name "*.lastUpdated" -exec grep -q "Could not transfer" {} \; -print -exec rm {}
Windows:
cd %userprofile%\.m2\repository
for /r %i in (*.lastUpdated) do del %i
Then rightclick on your project in eclipse and choose Maven->"Update Project ...", make sure "Update Dependencies" is checked in the resulting dialog and click OK.
以上是关于Maven 在新版eclipse报错的解决的主要内容,如果未能解决你的问题,请参考以下文章
eclipse中pom.xml org.apache.maven.plugins报错的解决