通过命令行将第三方jar包上传到Nexus3
Posted tarencez
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过命令行将第三方jar包上传到Nexus3相关的知识,希望对你有一定的参考价值。
1. Nexus2 才支持通过网页上传文件,Nexus3不支持,只能通过命令行
2. 在 Maven 默认 settings.xml 添加如下配置:
1 <server> 2 <id>gs-releases</id> 3 <username>user</username> 4 <password>password</password> 5 </server>
3. 执行命令:
1 mvn deploy:deploy-file -DgroupId=[groupId] -DartifactId=[artifactId] -Dversion=[version] -Dpackaging=jar -Dfile=[文件路径] -Durl=http://[ip]:[port]/repository/gs-releases/ -DrepositoryId=gs-releases
4. 好了
参考文章:
https://www.cnblogs.com/endv/p/11204704.html 使用Nexus3搭建Maven私服+上传第三方jar包到本地maven仓库
https://blog.csdn.net/xiaodaiwang/article/details/78093591 如何通过网页方式将jar包上传到nexus
以上是关于通过命令行将第三方jar包上传到Nexus3的主要内容,如果未能解决你的问题,请参考以下文章