当前位置:   article > 正文

如何批量上传Maven仓库jar包到Nexus3.x私服_maven批量上传jar到私仓

maven批量上传jar到私仓

一、手动mvn命令上传单个Jar 

mvn deploy:deploy-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=10.2.0.1.0 -Dpackaging=jar -Dfile=D:\\ojdbc6.jar -Durl=http://ip:8081/repository/maven-releases/ -DrepositoryId=nexus

二、批量上传maven仓库所有jar包

1.先将本地maven/repository仓库打一个完整的zip压缩包

2.上传到linux目录,如:/opt

3.解压repository.zip

4.进入repository目录

5.创建touch mavenimport.sh脚本,写入以下内容;

  1. #!/bin/bash
  2. # copy and run this script to the root of the repository directory containing files
  3. # this script attempts to exclude uploading itself explicitly so the script name is important
  4. # Get command line params
  5. while getopts ":r:u:p:" opt; do
  6. case $opt in
  7. r) REPO_URL="$OPTARG"
  8. ;;
  9. u) USERNAME="$OPTARG"
  10. ;;
  11. p) PASSWORD="$OPTARG"
  12. ;;
  13. esac
  14. done
  15. find . -type f -not -path './mavenimport\.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}/{} ;

6.输入chmod a+x mavenimport.sh进行可执行授权

7.执行导入命令 

./mavenimport.sh -u admin -p admin123 -r http://ip:8081/repository/maven-releases/

8.等待全部导入完毕后,在Nexus上刷新即可看到已导入的jar

三、Nexus3界面上传jar包

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/article/detail/48398
推荐阅读
相关标签
  

闽ICP备14008679号