maven中央管理仓库清除不完整的jar包

1.建立cleanUp.bat的文件(将cleanUp.txt后缀改成cleanUp.bat)

2.将下面复制粘贴到cleanUp.bat中,REPOSITORY_PATH后写对应的maven仓库路径

set REPOSITORY_PATH=F:\software\maven\rop
rem 正在搜索...
for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%\*lastUpdated*"') do (
    del /s /q %%i
)
rem 搜索完毕
pause

3.双击运行cleanUp.bat

 

你可能感兴趣的:(maven)