maven package加载不了system scope jar

问题描述

当我们引入system scope jar包的时候发现打包的时候加载不了

解决方案

在pom文件里面加入如下代码就行:

1
2
3
4
5
6
7
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>