您的位置:首页 > 其它

删除maven仓库中的LastUpdated文件

2016-09-12 11:11 375 查看
maven仓库中的某个构件如果因为网络或者其他的原因,没有下载成功或者下载被中断,将会出现一个LastUpdated的文件,这个时候,就算网络好了,也不能正常使用这个构件,而且你还不太好发现这个LastUpdated到底在哪,所以我就写了一个批处理,一劳永逸

cleanLastUpdated.bat(Windows版本) 


@
echo
off


rem create by sunhao(sunhao.java@gmail.com)


rem crazy coder


rem 这里写你的仓库路径


set
REPOSITORY_PATH=F:\study\apache-maven-3.0.3\repository


rem 正在搜索...


for
/f

"delims="

%%i
in
(
'dir
/b /s "%REPOSITORY_PATH%\*lastUpdated*"'
)
do
(

pause


cleanLastUpdated.bat(mac/linux版本) 

# crazy coder

# 这里写你的仓库路径

REPOSITORY_PATH=~
/Documents/tools/apache-maven-3
.0.3
/repository


echo
正在搜索...


find
$REPOSITORY_PATH
-name
"*lastUpdated*"
|
xargs
rm

-fr


echo
搜索完
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: