在整合或者发布环境下执行,将最终版本的包拷贝到远程的repository,使得其他的开发者或者工程可以共享。
需要做一下几个步骤
1,需要在POM中配置上传地址:
<distributionManagement>
<repository>
<id>releases</id>
<name>Nexus Release Repository</name>
<url>http://192.168.0.129:8044/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Nexus Snapshot Repository</name>
<url>http://192.168.0.129:8044/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
2,需要在在settings.xml中配置,用于用户验证
</servers>
<server>
<id>releases</id>
<username>deployment</username>
<password><![CDATA[deployment123]]></password>
</server>
<server>
<id>snapshots</id>
<username>deployment</username>
<password><![CDATA[deployment123]]></password>
</server>
</servers>,
3,运行命令上传即可
mvn deploy -Dmaven.test.skip=true
本文介绍如何使用Maven将项目的最终版本部署到远程repository的具体步骤。包括配置POM文件中的上传地址,设置settings.xml以实现用户验证,以及执行上传命令。
1825

被折叠的 条评论
为什么被折叠?



