Maven - 不同版本的传递依赖

发布于 2024-12-14 04:21:34 字数 246 浏览 1 评论 0原文

  • 假设我的应用程序需要 foo.jarbar.jar
  • foo.jar 需要 1.0 版的 c.jar
  • bar.jar 需要 2.0 版本的 c.jar

Maven 如何解决此冲突?将使用哪个版本的c.jar

  • Let's assume my application needs foo.jar and bar.jar
  • foo.jar needs version 1.0 of c.jar
  • bar.jar needs version 2.0 of c.jar

How does Maven resolve this conflict? Which version of c.jar will be used?

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

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

发布评论

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

评论(1

音栖息无 2024-12-21 04:21:34

这取决于您的有效 POM 中的声明顺序。如果 foo.jar 首先出现,您将获得 c.jar 1.0 版本。另一方面,如果首先声明 bar.jar ,它将是 c.jar 的 2.0 版本。

相关文档

...两个依赖项版本在依赖项中处于相同深度
树,直到 Maven 2.0.8 都没有定义哪一个会获胜,但是
从 Maven 2.0.9 开始,声明中的顺序才重要:
第一个声明获胜

It depends on the order of declaration in your effective POM. If foo.jar shows up first you will get version 1.0 of c.jar. If on the other hand bar.jar is declared first it will be version 2.0 of c.jar.

Relevant documentation:

...two dependency versions are at the same depth in the dependency
tree, until Maven 2.0.8 it was not defined which one would win, but
since Maven 2.0.9 it's the order in the declaration that counts: the
first declaration wins

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