From 59087c77e164fa5ebac896ec3b328c7c1e34cd36 Mon Sep 17 00:00:00 2001 From: 648540858 <456panlinlin> Date: 星期四, 05 十一月 2020 22:23:32 +0800 Subject: [PATCH] 解决mvn打包时无法将额外引入的包打入可执行jar的问题 --- pom.xml | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/pom.xml b/pom.xml index 51db777..8f3118f 100644 --- a/pom.xml +++ b/pom.xml @@ -167,6 +167,9 @@ <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <includeSystemScope>true</includeSystemScope> + </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> -- Gitblit v1.8.0