Maven 依赖构建有不同的构建版本

发布于 2024-10-13 03:59:06 字数 809 浏览 1 评论 0原文

我们有一个引用 1.14 版本的 artifactId 的 Java 应用程序。现在,同一个应用程序依赖于另一个应用程序,该应用程序引用相同的artifactId但版本不同。虽然我们可以手动将它们更改为引用一个,但这需要适当的手动操作:

<parent>
    <groupId>xxx.xxx.xxx.xxx</groupId>
    <artifactId>yyyyyy</artifactId>
    <version>1.14.1</version>
</parent>

    <dependency>
        <groupId>aaa.aaa.aaa.aaa</groupId>
        <artifactId>zzzzzz</artifactId>
        <version>2.0</version>
    </dependency>

2.0版本引用相同的artificat但版本不同:

<parent>
    <groupId>aaa.aaa.aaa.aaa</groupId>
    <artifactId>yyyyyy</artifactId>
    <version>1.1</version>
</parent>

因此虽然构建成功但部署和执行失败。

除了手动更新之外,我们如何从技术上解决该问题?

We have a Java application that refers 1.14 version of an artifactId . Now the same application has a dependency to a different application which refers the same artifactId but of a different version. Though we can manually change them to refer to one but it requires due manual operation:

<parent>
    <groupId>xxx.xxx.xxx.xxx</groupId>
    <artifactId>yyyyyy</artifactId>
    <version>1.14.1</version>
</parent>

    <dependency>
        <groupId>aaa.aaa.aaa.aaa</groupId>
        <artifactId>zzzzzz</artifactId>
        <version>2.0</version>
    </dependency>

The 2.0 version refers to a same artificat but of different version:

<parent>
    <groupId>aaa.aaa.aaa.aaa</groupId>
    <artifactId>yyyyyy</artifactId>
    <version>1.1</version>
</parent>

As such though build is successful but deployment and execution fails.

Other than manual updation how can we technically resolve the issue?

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

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

发布评论

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

评论(1

中性美 2024-10-20 03:59:06

看到标签,这是一个多模块项目吗?如果是这样,两个模块的 pom 不应该是相同的吗?

Seeing the <parent> tag, is this a multi-module project? If so, shouldn't the <parent> pom <version> of the two modules be the same?

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