问题描述
html
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.18.RELEASE</version>
<configuration>
<!--<classifier>exec</classifier>-->
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
- 最近我们遇到一个问题,就是如何将项目打包成一个胖 JAR(包含主项目代码)
解决方案
- 这种就是我们主项目代码和依赖JAR打包一体(胖JAR)解决方案
- 那如果说想要将主项目代码和依赖JAR分离打包的话,就需要将我们的注释解开即可
html
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.18.RELEASE</version>
<configuration>
<classifier>exec</classifier>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
- 这样一来,就分别得到 2 个 JAR,主项目不带 exec 依赖 JAR 带 exec
- 当然这个 classifier 标签内容也不一定是 exec 可自定义