Maven 依赖构建有不同的构建版本
我们有一个引用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看到
标签,这是一个多模块项目吗?如果是这样,两个模块的
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?