在 ejb-client jar 中创建没有类路径条目的清单,但使用 maven-ejb-plugin 在主 ejb jar 中创建类路径条目
我正在使用 maven-ejb-plugin 生成 ejb jar 和客户端 jar。我还使用存档来生成清单文件。 但问题是我需要 ejb jar 中的类路径条目,但不需要客户端 jar 中的类路径条目。 是否有任何配置可用于仅在主 jar 中 addClasspath 而在客户端 jar 中不设置类路径? 提前致谢。
I am using maven-ejb-plugin to generate the ejb jar and the client jar. Also I am using archive to generate the manifest file.
But the problem is I need the classpath entries in the ejb jar but not in the client jar.
Is there any configuration available to addClasspath only in the main jar and in the client jar do not set the class path?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这不被支持。如果这是一个选项,请从客户端 jar 中排除清单文件:
如果没有,恐怕您必须使用 antrun 插件进行一些后期处理(解包、修改清单、重新打包存档)。
I don't think that's supported. If this is an option, exclude the manifest file from the client jar:
If not, I'm afraid you'll have to do some post processing (to unpack, modify the manifest, repackage the archive) with the antrun plugin.