Maven 快照存储库

发布于 2024-08-10 09:10:10 字数 282 浏览 6 评论 0原文

我的项目依赖于一个第 3 方库,该库在其 Maven 存储库中只有快照(没有版本,这看起来很奇怪,但事实就是如此)。每次我进行完整构建(并清理本地 .m2 存储库)时,maven 显然都会去获取最新的构建。

我的存储库代理了其中包含快照的存储库,有没有办法告诉我的存储库停止提取新版本并基本上只保留当前版本?我真的不想每天晚上都拉一个新版本。

我唯一的想法是手动标记当前版本,但是有相当多的依赖项,并且它们都依赖于 SNAPSHOT 版本。有没有更简单的方法来做到这一点?

谢谢,

杰夫

My project depends on a 3rd party library that only has snapshots in its maven repository (no releases, which seems strange, but that's how it is). Every time I do a full build (and clean my local .m2 repository) maven will obviously go and grab the latest build.

My repository proxies the one with the snapshots in it, is there anyway to tell my repository to stop pulling new versions and basically just keep the current version? I really don't want to be pulling a new build every night.

The only thought I had is to manually label the current versions, but there quite a few dependencies and they are all dependent on the SNAPSHOT versions. Is there an easier way to do this?

thanks,

Jeff

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

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

发布评论

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

评论(4

你在我安 2024-08-17 09:10:10

看看 sonatype 的这篇博客文章:第 3 方快照依赖项的最佳实践

我通常将文件作为某个版本安装到我的代理或本地存储库,然后引用该版本。这样你就不会冒快照从你身下消失的风险。

Take a look at this blog entry from sonatype: Best Practices for 3rd Party Snapshot Dependencies

I usually install the file to my proxy or local repo as a certain version, and then refer to that version. Then you don't risk the snapshot disappearing out from under you.

执手闯天涯 2024-08-17 09:10:10

您是否使用 -U (-update-snapshots) 选项运行构建?如果是这样,请尝试不使用。

否则,如果仅对存储库有此依赖项,您可以禁用此存储库,Maven 将继续使用它在本地存储库中找到的最后一个版本。

Do you run the build with the -U ( -update-snapshots ) option ? If so, try without.

Else, if there is only this dependency on the repository, you could just disable this repository, and Maven will keep using the last version it finds on the local repository.

梦归所梦 2024-08-17 09:10:10

您是否尝试在 元素中使用 never 策略指定 ;?请参阅 插件存储库存储库

Did you try to specify the <updatePolicy> with the never strategy in the <snapshots> element of your <pluginRepository>? See Plugin Repositories and Repositories.

遗心遗梦遗幸福 2024-08-17 09:10:10

使用 --no-snapshot-updates 选项抑制 SNAPSHOT 更新。

例如

$ mvn --no-snapshot-updates compile

Use the --no-snapshot-updates option to suppress SNAPSHOT updates.

e.g.

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