在 ejb-client jar 中创建没有类路径条目的清单,但使用 maven-ejb-plugin 在主 ejb jar 中创建类路径条目

发布于 2024-08-29 05:07:39 字数 167 浏览 7 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

蓝眼泪 2024-09-05 05:07:39

我认为这不被支持。如果这是一个选项,请从客户端 jar 中排除清单文件:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-ejb-plugin</artifactId>
  <version>2.2.1</version>
  <configuration>
    <clientExcludes>
      <clientexclude>META-INF/MANIFEST.MF</clientexclude>
    </clientExcludes>
    ...
  </configuration>
</plugin>

如果没有,恐怕您必须使用 antrun 插件进行一些后期处理(解包、修改清单、重新打包存档)。

I don't think that's supported. If this is an option, exclude the manifest file from the client jar:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-ejb-plugin</artifactId>
  <version>2.2.1</version>
  <configuration>
    <clientExcludes>
      <clientexclude>META-INF/MANIFEST.MF</clientexclude>
    </clientExcludes>
    ...
  </configuration>
</plugin>

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.

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