maven Missing artifact处理办法

Remove all your failed downloads:

find ~/.m2  -name "*.lastUpdated" -exec grep -q "Could not transfer" {} \; -print -exec rm {} \;

 

For windows:

cd %userprofile%\.m2\repository
for /r %i in (*.lastUpdated) do del %i

猜你喜欢

转载自nalan.iteye.com/blog/2333140