解决springboot项目使用maven不能将第三方jar包打包的问题

在pom文件中添加如下插件配置:


    org.springframework.boot
    spring-boot-maven-plugin
    
        true
        true
    

true 用于明确表示编译版本配置有效,在spring-boot-maven-plugin中configuration下的includeSystemScope属性指定为true即可了。

你可能感兴趣的:(解决springboot项目使用maven不能将第三方jar包打包的问题)