maven工程中,若存在.lastUpdated文件,表示该文件下载失败并不会再重新下载,所以往往要把这种文件删除才能重新下载;
以下是遍历所有本地仓库中存在的lastUpdated文件并删除
创建xxx.bat文件(比如cleanLastUpdated.bat)输入以下命令并运行
set REPOSITORY_PATH=D:\xxx\你的repository目录 rem 正在搜索... for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%\*lastUpdated"') do ( del /s /q %%i ) rem 搜索完毕 pause
运行结果
标签:lastUpdate,REPOSITORY,文件,%%,lastUpdated,maven,rem,残留 From: https://www.cnblogs.com/lccsdncnblogs/p/16612025.html