其他分享
首页 > 其他分享> > Jar包上传至Nexus Repository私服

Jar包上传至Nexus Repository私服

作者:互联网

设置Maven配置文件server节点

  1. 打开Maven的setting.xml文件,找到 servers节点
    在这里插入图片描述
  2. servers节点中加入服务器配置,如下:
    <server>
      <id>csdn-maven-releases</id>
      <username>xiaolongren</username>
      <password>123456</password>
    </server>
    <server>
      <id>csdn-maven-snapshots</id>
      <username>xiaolongren</username>
      <password>123456</password>
    </server>

在IDEA中上传包

  1. 在IDEA中配置pom.xml
<distributionManagement>
	<!--发布库-->
	<repository>
		<!--对应Maven中配置的id-->
		<id>csdn-maven-releases</id>
		<name>releases</name>
		<!--私服仓库地址-->
		<url>xxxxx</url>
		<uniqueVersion>true</uniqueVersion>
	</repository>
	<!--快照库-->
	<snapshotRepository>
		<id>csdn-maven-snapshots</id>
		<name>snapshots</name>
		<url>xxx</url>
	</snapshotRepository>
</distributionManagement>
  1. 上传包

标签:Nexus,私服,Jar,snapshots,Maven,csdn,上传,id
来源: https://blog.csdn.net/qq_36330228/article/details/121802657