模块对生成的 jar 的依赖
我有一个项目(称为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两种可能的情况:
如果您并行开发这两个模块并且属于同一项目,则创建一个父 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.