Maven多模块,模块之间的依赖

发布于 2025-01-11 02:10:17 字数 217 浏览 0 评论 0原文

我创建了一个 Maven 多模块项目,包含 2 个模块:核心和服务。 服务模块正在使用核心模块(核心被声明为对服务模块的依赖)。 父pom版本是1.0-SNAPSHOT(模块也是如此)。 在 Maven clean package 阶段,maven 既不从本地存储库也不从远程存储库(nexus)获取核心模块。它始终使用项目中的核心模块进行构建,并且不会从存储库(本地/远程)获取任何更新的快照版本。 这是预期的行为吗?

I created a maven multi modules project with 2 modules: core and service.
Service module is using core module (core is declared as a dependency on service module).
The parent pom version is 1.0-SNAPSHOT (so the modules too).
During the maven clean package phase, maven is not fetching core module neither from my local repo nor from remote repo (nexus). It is always building with core module within the project and not fetching any more recent SNAPSHOT version from repo (local/remote).
Is that the expected behaviour?

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

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

发布评论

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

评论(1

孤独患者 2025-01-18 02:10:17

如果您构建该项目,它将构建一切。命令clean package将解决项目内的模块间依赖关系。

其他一切都可能会导致令人惊讶的结果。

如果您确实只想构建一个模块,请使用 -pl 参数。

If you build the project, it will build everything. The command clean package will resolve the inter-module dependencies inside the project.

Everything else would probably lead to surprising results.

If you really just want to build just one module, use the -pl parameter.

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