删除本地仓库中所有的.lastUpdated
windows系统cd %userprofile%\.m2\repositoryfor /r %i in (*.lastUpdated) do del %ilinux系统find /app/maven/localRepository -name "*.lastUpdated" -exec grep -q "Could not transfer" {} \;
·
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 {} \;
更多推荐
已为社区贡献1条内容
所有评论(0)