Maven_删除maven仓库中的LastUpdated文件

via:http://www.oschina.net/code/snippet_151849_45910

 

maven仓库中的某个构件如果因为网络或者其他的原因,没有下载成功或者下载被中断,将会出现一个LastUpdated的文件,这个时候,就算网络好了,也不能正常使用这个构件,而且你还不太好发现这个LastUpdated到底在哪.

follow批处理,解决这个问题

 

cleanLastUpdated.bat(Windows版本)

@echo off

 

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 (

    del /s /q %%i

)

rem 搜索完毕

pause

 

cleanLastUpdated.bat(mac/linux版本)

 

# 这里写你的仓库路径

REPOSITORY_PATH=~/Documents/tools/apache-maven-3.0.3/repository

echo 正在搜索...

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

echo 搜索完

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值