maven远程上传jar包

mvn deploy:deploy-file -DgroupId=dr.pay.dcpay -DartifactId=dcpay -Dversion=1.0.0 -Dpackaging=jar -Dfile=/opt/TrustPayClient-V3.1.4.jar  -Durl=http://172.16.66.34:8081/nexus/content/repositories/del_release/ -DrepositoryId=del_release

vim settings.xml    #在servers段添加

       <server>
         <id>del_release</id>
         <username>admin</username>
         <password>admin</password>
       </server>
       <server>
         <id>del_snapshots</id>
         <username>admin</username>
         <password>admin</password>
       </server>

 

原文地址:https://www.cnblogs.com/python-cat/p/12580057.html