maven 打包 把第三方包也打进去

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

  


 

原文地址:https://www.cnblogs.com/sz-jack/p/11698272.html