Springboot--maven命令子模块单独打包
Posted Alex_TD
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot--maven命令子模块单独打包相关的知识,希望对你有一定的参考价值。
1.查看denpendency:tree :
mvn denpendency:tree
2.运行springboot:
mvn spring-boot:run
3.打包命令:
mvn package
4.运行springboot jar包:
java -jar springboot-xxx.jar
5.打jar包 pom 需要配置:
如果子模块单独打包,需要加 <executions>的内容repackage
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.2.4.RELEASE</version> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
以上是关于Springboot--maven命令子模块单独打包的主要内容,如果未能解决你的问题,请参考以下文章
springboot+maven多模块工程dependency not found
SpringBoot maven项目打jar包并部署到 linux/windows服务