maven打包为jar文件时,解决scope为system的jar包无法被打包进jar文件的解决方案。

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

你可能感兴趣的:(maven打包为jar文件时,解决scope为system的jar包无法被打包进jar文件的解决方案。)