Windows系统 清除本地maven仓库无用的 _remote.repositories、sha1、lastUpdated相关的文件
脚本命令:
set REPOSITORY_PATH= 你自己本地maven仓库地址
rem starting...
for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%\*_remote.repositories*"') do (
del /s /q %%i
)
for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%\*sha1*"') do (
del /s /q %%i
)
for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%\*lastUpdated*"') do (
del /s /q %%i
)
rem end!
pause
双击执行 xxx.bat脚本