欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

 

相关标签: springboot打jar包