springboot使用maven打包无法打进本地包解决方法

在使用springboot-1.5.6.RELEASE  版本的时候,需要在pom中添加如下节点

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

文末小福利免费视频资源网站www.sousuohou.com
原文地址:https://www.cnblogs.com/vicF/p/9004884.html