Maven清除lastUpdated文件

windows:

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

linux:

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

 

 

你可能感兴趣的:(菜鸟逆袭之路——工具)