使用 Maven 自动上传 Nexus 中的工件
我正在尝试自动化将 Maven 生成的工件上传到 Nexus 托管存储库的过程(就像 Maven 目标,它将生成的 jar 上传到 Nexus 中的指定存储库)。这可能吗?在 Nexus 文档中,他们只讨论了手动上传。
我还查看了 Nexus maven 插件,但没有指定类似的内容。
提前致谢
Am trying to automate the process of uploading an artifact generated by Maven into a Nexus hosted repository (like a maven goal, which will upload the generated jar into a specified repository in Nexus). Is this possible? In the Nexus docs they have talked only about manual uploading.
I also looked at the nexus maven plugins and nothing like this is specified.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
mvn deploy
通过 WebDAV 部署您的工件(在distributionManagement
部分声明 Nexus DAV URL)。另请参阅
You have to use
mvn deploy
to deploy your artifacts via WebDAV (declare the Nexus DAV URL in thedistributionManagement
section).See also