我刚学习Jenkins CI工具。从Jenkins到nexus部署工件时遇到问题。在这里,我附加了屏幕截图Jenkins错误捕捉与我的pom文件和maven设置文件配置。
的pom.xml
<distributionManagement>
<snapshotRepository>
<id>nexus-snapshots</id>
<url>http://localhost:8080/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
行家/ Setting.xml的
<server>
<id>nexus-snapshots</id>
<username>admin</username>
<password>admin123</password>
请问有人在这个问题上帮助我吗?非常感谢。
答案 0 :(得分:0)
您使用artifactory插件上传到nexus,artifactory是一个不同的存储库管理器。
你的nexus网址也错了,应该是http://localhost:8080/nexus/content/repositories/dev_repo
此外,如果您已经将maven配置为上传到repo,那么只需运行mvn publish即可。