模块对生成的 jar 的依赖

发布于 2024-10-11 15:35:30 字数 143 浏览 1 评论 0原文

我有一个项目(称为 EJB 服务器),其中包含 X-Doclet 注释的 EJB 服务和一个依赖于从服务器项目生成的客户端 jar 的客户端项目(模块)。

当一个项目(模块)依赖于从其他模块生成的 JAR 时,maven 设置此类依赖关系的最佳实践是什么?

I have one project (called EJB server) that contains X-Doclet annotated EJB service and a client project (module) that depends on client jar generated from server project.

What is best practice in maven for setting such dependencies when one project (module) depends on JAR which is generated from other module?

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

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

发布评论

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

评论(1

反目相谮 2024-10-18 15:35:30

有两种可能的情况:

如果您并行开发这两个模块并且属于同一项目,则创建一个父 POM 并声明这两个模块。依赖模块(客户端)应将声明模块(服务器)声明为依赖项。

如果两个模块都是单独开发的,那么释放服务器,声明客户端依赖于服务器,并让maven从你的私有仓库中检索服务器。

There are two possible scenarios:

If you develop these two modules in parallel and are part of the same project then create a parent POM and declare the two modules. Depending module (client) should declare as a dependency the declaring one (server).

If both modules are developed separately then release the server, declare that client depends on server and let the maven retrieve the server from your private repository.

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