maven 打包如何将部分jar打进去
时间: 2023-11-12 22:04:59 浏览: 89
你可以使用 Maven 的 shade 插件来将部分 jar 包打进去。首先,在你的 Maven 项目的 pom.xml 文件中添加以下插件配置:
```xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>com/example/excluded.jar</exclude>
<exclude>com/example/other-excluded.jar</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
```
在上述配置中,你需要指定需要排除的 jar 包的名称或者 Maven 坐标。在这里,我排除了 com.example.excluded.jar 和 com.example.other-excluded.jar 两个 jar 包。你可以根据自己的需要修改这个配置。
然后,在命令行中执行以下命令:
```
mvn clean package
```
这个命令会使用 shade 插件来打包你的项目,并且将排除的 jar 包打包在一起。你可以在生成的 jar 包中查看到这些 jar 包的内容。
阅读全文