使用 Maven 创建两个具有重叠类的工件

发布于 2024-10-17 06:01:33 字数 234 浏览 3 评论 0原文

我有一个 Maven pom,可以创建一个工件,我们将其称为 everything.jar。

我想将 everything.jar 中的类的子集复制到另一个 jar 中,我们称之为 mini.jar。

构造我的 maven pom 来生成两个 jar 文件的最佳方法是什么,一个名为 mini.jar,仅包含几个类,另一个名为 everything.jar,包含 mini 中的所有内容以及一些附加类,而无需实际复制来源?

I have a maven pom that creates an artifact, let's call it everything.jar.

I would like to copy a subset of the classes in everything.jar into another jar, let's call it mini.jar.

What's the best way to structure my maven pom(s) to produce two jar files, one called mini.jar with just a few classes, and the other everything.jar with everything in mini plus some additional classes, without actually making copies of the source?

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

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

发布评论

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

评论(1

牵强ㄟ 2024-10-24 06:01:33

我会反过来做。

创建一个多模块项目:

      root
    /  |   \
mini extra everything
  • mini 包含核心内容
  • extra 依赖于 mini 并定义附加类
  • everything 依赖于两者并使用 maven-shade-plugin 创建一个
    将另外两个罐子合并起来
    项目(您也可以从
    额外项目中,但我会
    称之为不太优雅)

参考:

I'd do it the other way around.

Create a multi - module project:

      root
    /  |   \
mini extra everything
  • mini contains the core stuff
  • extra has a dependency to mini and defines the additional classes
  • everything has a dependency to both and uses the maven-shade-plugin to create a
    combined jar from the two other
    projects (you can also do that from
    inside the extra project, but I'd
    call that less elegant)

Reference:

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