使用maven获取特定pom的最新快照

发布于 2024-12-10 10:47:07 字数 175 浏览 0 评论 0原文

在我们的环境中,我们使用 Jenkins 来构建 Java 工件。

我们希望基于脚本的构建系统能够自动部署工件并重用我们已有的脚本。

我想做的是让构建系统从 svn 中提取 HEAD 并使用 Maven 来获取快照存储库中的最新工件,而不是让构建系统构建已经部署到 Maven 存储库的 java 项目。

In our environment we use Jenkins to build java artefacts.

We want a scriptbased buildsystem to automatically deploy the artifact and re-use the scripts we already have.

What I want to do is make the buildsystem extract the HEAD from svn and use Maven with some goal to get the latest artefact in the snapshot-repository as opposed to letting the buildsystem build the javaproject that already is deployd to the maven repo.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水溶 2024-12-17 10:47:07

创建一个新的 Jenkins 作业就足够了,您可以在其中签出您的最终工件项目(例如您的应用程序 WAR),而不是用于构建您的应用程序所依赖的所有库的聚合器(即多模块)项目。通过这种方式,Maven 应该通过从存储库中提取依赖项来组装您的应用程序,而不是重新构建它们。

It should be sufficient to create a new Jenkins job where you checkout your final artifact project (e.g. your application WAR) rather than the aggregator (i.e. multi-module) project you use to build all the libraries your application depends on. In this way Maven should assemble your application by pulling dependencies from your repository rather than by re-building them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文