spring boot maven 插件
Posted 双宝的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot maven 插件相关的知识,希望对你有一定的参考价值。
spirng boot 需要使用专用maven插件打包,才能打包。引入如下。
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.4.3.RELEASE</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
以上是关于spring boot maven 插件的主要内容,如果未能解决你的问题,请参考以下文章
Maven插件系列之spring-boot-maven-plugin