scope为system的maven默认是不打包进去的。
网上查了很多解决方案,基本都是错误的,特别是中文社区,基本没有说到点上的。配置resource的,更容易导致其他问题。
最后,翻到github上的
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>
|