如何上传jar包到maven仓库
Posted Secondworld
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何上传jar包到maven仓库相关的知识,希望对你有一定的参考价值。
拷贝jar包到非本地仓库目录
进入控制台,输入下面命令即可:
mvn deploy:deploy-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.3 -Dpackaging=jar -Dfile=ojdbc6-11.2.0.3.jar -Durl=http://ip:port/nexus/content/repositories/releases/ -DrepositoryId=Releases
其中Durl、DrepositoryId根据本地项目deploy的distributionManagement来选择(发布版和快照版)
以上是关于如何上传jar包到maven仓库的主要内容,如果未能解决你的问题,请参考以下文章
如何上传自己的jar包到maven中央仓库(2021最新版)
如何上传自己的jar包到maven中央仓库(2021最新版)