springboot jar package

Record it.

The first step of springboot jar package

1. Maven package dependencies

<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<includeSystemScope>true</includeSystemScope>
				</configuration>
			</plugin>
		</plugins>
	</build>

2. Maven packaging commands

mvn clean install -DMaven.test.skip=true

 

Guess you like

Origin blog.csdn.net/shuoshuo_12345/article/details/108485046