maven package加载不了system scope jar 发表于 2019-01-15 | 更新于 2019-12-17 | 分类于 springboot | 评论数: 问题描述当我们引入system scope jar包的时候发现打包的时候加载不了 解决方案在pom文件里面加入如下代码就行: 1234567<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <includeSystemScope>true</includeSystemScope> </configuration></plugin>