zl程序教程

您现在的位置是:首页 >  Java

当前栏目

Maven打包推送到远端

2023-04-18 16:44:58 时间

xml文件project标签下加入:

	<distributionManagement>
          <repository>
            <id>nexus-releases</id>
            <name>nexus release repo</name>
            <url>http://localhost:9001/nexus/content/repositories/releases/</url>
           </repository>
	   <snapshotRepository>
		   <id>nexus-snapshots</id>
		   <name>nexus snapshot repo</name>
		   <url>http://localhost:9001/nexus/content/repositories/snapshots/</url>
	   </snapshotRepository>
       </distributionManagement>

.../conf/setting.xml:

<servers>
	<server>
	   <!-- 对应pom中的id -->
          <id>nexus-snapshots</id>
	  <username>admin</username>
	  <password>admin123,默认密码</password>
      <!--<privateKey>nexus-snapshots</privateKey>-->
      <!--<passphrase>admin123</passphrase>-->
        </server>
	<server>
          <id>nexus-releases</id>
	  <username>admin</username>
	  <password>admin123</password>
        </server>
 </servers>

mvn clean deploy