maven上传第三方jar到nexus私服

来源:互联网 发布:无损音乐播放软件 编辑:程序博客网 时间:2024/06/05 23:05

准备好jar;

自定义内容:groupId artifactId version packaging

指定内容:jar路径 要传入仓库的url  仓库的id

一般上传需要这个仓库的特定权限,要在setting.xml配置好这个仓库的认证:

<server> 
     <id>m1releases</id> 
     <username>zhangsan</username> 
     <password>admin123</password> 
   </server> 


命令行输入如下命令即可上传:

mvn deploy:deploy-file -DgroupId=com.tootoo.cn -DartifactId=aopalliance -Dversion=1.0 -Dpackaging=jar -Dfile=C:\exus\aopalliance-1.0.jar -Durl=http://localhost:8081/nexus/content/repositories/m1releases/ -DrepositoryId=m1releases


原创粉丝点击