• maven


    背景

    在进行maven开发时,往往需要下载大量jar包,而由于网络不稳定等其他因素可能导致jar未下载完毕,然后保留了lastUpdated文件,导致无法更新失效的jar包。
    现在提供个bat脚本,只需要输入maven本地仓库地址就可以将失效的lastUpdated信息删除,maven就能够重新下载失效的jar。

    工具封装

    1. 只需要将仓库文件夹拖入bat窗口或者将仓库文件夹路径填入bat中,就可以清除失效的lastUpdated信息。
    2. 工具已上传github : 点我进入
    @echo off
    echo @describe Find out all lastUpdated, and delete its.
    echo @github https://github.com/cjunn/script_tool/
    echo @author cjunn
    echo @date Mon Jan 13 2020 13:13:56 GMT+0800
    :again
    set /p REPOSITORY_PATH=Please enter the local Maven warehouse Path:
    :: Remove all double quotes
    set REPOSITORY_PATH=%REPOSITORY_PATH:"=%
    if not exist "%REPOSITORY_PATH%" (
       echo Maven warehouse address not found, please try again.
       goto again
    )
    for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%*lastUpdated*"') do (
    	del /s /q "%%i"
    )
    echo Expired files deleted successfully.
    pause;
    
  • 相关阅读:
    WebUploader IE9下报错
    raphael 支持group(简)
    SVG image xlink:href 设置失败
    活动倒计时代码(精确到毫秒)jquery插件
    PHP连续签到
    PHP判断是否微新浏览器
    php中文匹配
    PHP+mysql统计排名第几位
    php随机抽奖实例分析
    类似a:hover的伪类的注解
  • 原文地址:https://www.cnblogs.com/cjunn/p/12191405.html
Copyright © 2020-2023  润新知