将maven本地仓库中的jar包用脚本上传到Nexus远程maven库中
如果是用的gradle管理工具,可以看我另一篇文章,先将jar包从gradle缓存中转移到maven本地库。
这里使用Bash脚本可以将Maven 本地库目录的所有jar , 一次性导入到Nexus中。 如果是在Windows环境中, 可以安装Git , 使用Git Bash 执行 sh 脚本。
在Maven的本地库路径下创建文件 mvnimport.sh, 内容如下
#!/bin/bash # copy and run this script to the root of the repository directory containing files # this script attempts to exclude uploading itself explicitly so the script name is important # Get command line params while getopts ":r:u:p:" opt; do case $opt in r) REPO_URL="$OPTARG" ;; u) USERNAME="$OPTARG" ;; p) PASSWORD="$OPTARG" ;; esac done find . -type f -not -path './mvnimport\.sh*' -not -path '*/\.*' -not -path '*/\^archetype\-catalog\.xml*' -not -path '*/\^maven\-metadata\-local*\.xml' -not -path '*/\^maven\-metadata\-deployment*\.xml' | sed "s|^\./||" | xargs -I '{}' curl -u "$USERNAME:$PASSWORD" -X PUT -v -T {} ${REPO_URL}/{} ;
如果本地仓库是在Windows系统下,则在该目录下右键执行Git Bash Here,否则直接下一步
执行如下命令:
./mvnimport.sh -u admin -p yourpassword -r http://localhost:8081/repository/maven-releases/
yourpassword改为你的密码
地址改为你的maven远程仓库的地址
标签:批量,仓库,jar,maven,sh,本地,path,包至 From: https://www.cnblogs.com/studywithquan/p/17549892.html