使用 Maven 创建两个具有重叠类的工件
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会反过来做。
创建一个多模块项目:
将另外两个罐子合并起来
项目(您也可以从
在额外项目中,但我会
称之为不太优雅)
参考:
I'd do it the other way around.
Create a multi - module project:
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:
shade:shade
mojo