我有一个代码库,我想将它作为 jar 分发。它还依赖于外部 jar,我想将其捆绑在最终的 jar 中。
我听说这可以使用 来完成maven-assembly-plug-in
,但我不明白如何。有人可以指点我一些例子。
现在,我正在使用 fat jar 来捆绑最终的 jar。我想使用 maven 实现同样的目标。
我有一个代码库,我想将它作为 jar 分发。它还依赖于外部 jar,我想将其捆绑在最终的 jar 中。
我听说这可以使用 来完成maven-assembly-plug-in
,但我不明白如何。有人可以指点我一些例子。
现在,我正在使用 fat jar 来捆绑最终的 jar。我想使用 maven 实现同样的目标。
注意:如果您是spring-boot应用程序,请阅读答案末尾
将以下插件添加到您pom.xml
的最新版本可以在
...
<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-shade-plugin。
在构建中配置阴影插件后,该命令mvn package
将创建一个包含所有依赖项的单个 jar。
也许你想要maven-shade-plugin
,捆绑依赖,最小化未使用的代码并隐藏外部依赖以避免冲突。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<createDependencyReducedPom>true</createDependencyReducedPom>
<dependencyReducedPomLocation>
${java.io.tmpdir}/dependency-reduced-pom.xml
</dependencyReducedPomLocation>
<relocations>
<relocation>
<pattern>com.acme.coyote</pattern>
<shadedPattern>hidden.coyote</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
参考:
实际上,添加
<archive>
<manifest>
<addClasspath>true</addClasspath>
<packageName>com.some.pkg</packageName>
<mainClass>com.MainClass</mainClass>
</manifest>
</archive>
对 maven-jar-plugin 的声明不会为我将主类条目添加到清单文件中。我必须将它添加到 maven-assembly-plugin 才能在清单中得到它
您可以使用onejar-maven-plugin进行打包。基本上,它将您的项目及其依赖项组装为一个 jar,不仅包括您的项目 jar 文件,还包括所有外部依赖项作为“jar of jars”,例如
<build>
<plugins>
<plugin>
<groupId>com.jolira</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<version>1.4.4</version>
<executions>
<execution>
<goals>
<goal>one-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
注 1:项目主页提供配置选项。
注意 2:出于某种原因,onejar-maven-plugin 项目未在 Maven 中心发布。但是jolira.com 会跟踪原始项目并将其发布到 groupId com.jolira
。
另一种方法是使用 maven shade插件来构建一个uber-jar
.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version> Your Version Here </version>
<configuration>
<!-- put your configurations here -->
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>