本文主要是介绍副本技能-maven打包仓库常用配置与上传指定制品仓库,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.找到本地Maven的配置文件settings.xm
2.配置setting文件中的服务器远程仓库地址
<servers><!-- 正式包仓库 --><server><id>xt-releases</id><username>UTmQqF</username><password>******</password></server><!-- 开发中的镜像包仓库 --><server><id>xt-snapshots</id><username>UTmQqF</username><password>******</password></server>
</servers>
3.增加仓库的配置文件【可以增加多个】
<profile><!-- 私有仓库配置文件 --><id>xt-private-repo</id><repositories><!-- 正式包仓库 --><repository><id>xt-releases</id><url>https://repo.rdc.aliyun.com/repository/134790-release-xxxxx/</url></repository><!-- 开发中的镜像包仓库 --><repository><id>xt-snapshots</id><url>https://repo.rdc.aliyun.com/repository/134790-snapshot-xxxxx/</url></repository></repositories>
</profile>
4.在自己的项目POM文件各种增加配置,发布Jar包到对应位置
<distributionManagement><!-- 正式包仓库 --><repository><id>xt-releases</id><url>https://repo.rdc.aliyun.com/repository/134790-release-xxxxx/</url></repository><!-- 开发中的镜像包仓库 --><snapshotRepository><id>xt-snapshots</id><url>https://repo.rdc.aliyun.com/repository/134790-snapshot-xxxxx/</url></snapshotRepository>
</distributionManagement>
5.本地项目打包效果展示
本地仓库的Jar包
6.线上查看仓库的打包效果
这篇关于副本技能-maven打包仓库常用配置与上传指定制品仓库的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!