怎么用sts打包多个springboot项目
Posted 下饭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么用sts打包多个springboot项目相关的知识,希望对你有一定的参考价值。
1.先在运行的那个项目的pom.xml中添加如下插件:
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
这个项目为springboot项目提供maven支持,包含了打包之类的maven支持。
2.选中运行的那个项目,右键,RUn as,Maven Install
3.在这个项目的target就能看到这个jar包。
以上是关于怎么用sts打包多个springboot项目的主要内容,如果未能解决你的问题,请参考以下文章