springboot 打jar包
程序员文章站
2022-05-04 17:48:12
...
记录一下。
springboot 打jar包第一步
1、maven打包依赖
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
2、maven打包命令
mvn clean install -DMaven.test.skip=true
上一篇: Direct Buffer vs. Heap Buffer
下一篇: 看不懂这个语法了,该如何解决