Answers:
注意:如果您是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:一个仅包含项目类,另一个带有所有后缀“ -jar-with-dependencies”的胖jar。
如果您想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>
对于春季启动应用程序,请使用以下插件(选择合适的版本)
<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>
参考文献:
Provider org.apache.xerces.jaxp.SAXParserFactoryImpl not found
,只需将其取出<minimizeJar>true</minimizeJar>
。
您可以使用onejar-maven-plugin进行打包。基本上,它将项目及其依赖项作为一个jar进行组装,不仅包括项目jar文件,还包括所有外部依赖项作为“ jar罐”,例如
<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 Central中发布。但是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>