Spring-boot:多模块打包
Posted 告别的时代
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring-boot:多模块打包相关的知识,希望对你有一定的参考价值。
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <!-- 指定该Main Class为全局的唯一入口 --> <mainClass>com.xx.Application</mainClass> <layout>ZIP</layout> </configuration> <executions> <execution> <goals> <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中--> </goals> </execution> </executions> </plugin>
以上是关于Spring-boot:多模块打包的主要内容,如果未能解决你的问题,请参考以下文章
多模块 Gradle 项目 - 从 Spring-Boot 1.5 迁移到 2.1