gpt4 book ai didi

maven - 使用 Maven 构建 fat jar

转载 作者:行者123 更新时间:2023-12-02 02:50:54 24 4
gpt4 key购买 nike

我有一个代码库,我想将其作为 jar 分发。它还依赖于外部 jar,我想将其捆绑在最终的 jar 中。

我听说这可以使用maven-assemble-plug-in来完成,但我不明白如何做。有人可以给我举一些例子吗?

现在,我正在使用 fat jar 来捆绑最终的 jar。我想使用 Maven 实现同样的目标。

最佳答案

注意:如果您是 spring-boot 应用程序,请阅读答案末尾

将以下插件添加到您的pom.xml最新版本可以是found at

...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>CHOOSE LATEST VERSION HERE</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...

配置此插件后,运行 mvn package 将生成两个 jar:一个仅包含项目类,第二个 fat jar 包含所有依赖项,后缀为“-jar-with-dependencies” ”。

如果您想在运行时正确设置classpath,那么还需要添加以下插件

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>fully.qualified.MainClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<小时/>

对于 Spring Boot 应用程序仅使用以下插件(选择适当的版本)

<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<mainClass>${start-class}</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>

关于maven - 使用 Maven 构建 fat jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57109187/

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