maven使用之烦人的.lastUpdated文件

来源:互联网 发布:java微信上传图片接口 编辑:程序博客网 时间:2024/05/17 15:38

项目使用maven管理jar包,很容易因为各种原因(网速慢、断网)导致jar包下载不下来,出现很多.lastUpdated文件。这些文件一个一个删除太麻烦。下面是全部删除的方法


windows系统

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

linux系统

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

 

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



原文地址:http://www.cnblogs.com/shuaiqing/p/5671301.html




0 0