gpt4 book ai didi

java - 如何将来自不同模块的类捆绑到 jar?

转载 作者:行者123 更新时间:2023-11-30 07:11:42 24 4
gpt4 key购买 nike

我有一个主项目(比如 A),它包含模块 B 和模块 C。模块 C 是模块 B 的依赖项。除此之外,我想将模块 C 的所有类添加到模块 B 的 jar 中。通过在 Maven pom 文件中添加 C 作为依赖项可以正常工作。但是模块 B jar 独立运行并且在运行时需要模块 C 类(已编译)。

我怎样才能用 maven 做到这一点?我正在使用 JIdea 12。

最佳答案

首先将C添加为B的依赖

<dependency>
<groupId>A</groupId>
<artifactId>C</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>

然后在模块B的pom文件中使用maven shade插件如下

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>${artifactId}-${version}</finalName>
</configuration>
</plugin>

关于java - 如何将来自不同模块的类捆绑到 jar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20898797/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com