合并 Maven .m2 存储库

发布于 2024-12-01 00:06:03 字数 275 浏览 0 评论 0原文

我在离线网络中有一个 Maven 存储库。

我需要更新其内容并合并到另一个存储库中。

做到这一点的最佳方法是什么?我查看了 wagon 插件 Wagon 但我我担心可能有更好的方法。

我可以用离线存储库管理器替换我的本地存储库,但问题仍然存在,我必须使用在线源的定期合并来更新该存储库。

I have a maven repository in an offline network.

I need to update its contents and merge in another repository .

What is the best method to do this ? I looked at the wagon plugin Wagon but I am concerned that there may be a better way.

I could replace my local repo with an offline repository manager but the problem still remains , I would have to update that Repo with regular merges from an online source.

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

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

发布评论

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

评论(2

泛滥成性 2024-12-08 00:06:03

如果您有能力在操作期间删除所有元数据(应通过您运行的下一个 mvn 命令恢复),则只需使用 rsync 即可。

如果构建具体存储库不是强制性的,请考虑使用 Nexus 及其

If you can afford to get rid of all metadata (which should recover with the next mvn commands you run) for the time of your operation, just use rsync.

If building a concrete repository is not mandatory, consider using Nexus and its groups.

紫﹏色ふ单纯 2024-12-08 00:06:03

文森特的答案是正确的,但我更强烈建议你不要在 .m2/repository 目录中执行此操作。该目录是缓存,应该可以随时删除。您应该考虑设置一个存储库管理器(例如 Archiva、Nexus 或 Artifactory,或者只是一个 HTTP 服务器)并在那里托管存储库内容,以便您可以让 Maven 管理 .m2/repository 目录。

Vincent's answer is correct, but I would more strongly suggest that you don't do this in the .m2/repository directory. That directory is a cache, and should be able to be removed at any time. You should consider setting up a repository manager (such as Archiva, Nexus or Artifactory, or just a HTTP server) and host the repository content there so that you can let Maven manage the .m2/repository directory.

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