idea springboot项目打包没有第三方引入的jar包
第三方jar包引入
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.6</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/jar/commons-lang3-3.6.jar</systemPath>
</dependency>
#启动项目 jar 包调用接口之后,会报错(提示缺少引用的 jar 包)
解决方法
在 pom.xml 文件的 build 节点中添加 includeSystemScope
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
**<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>**
</plugin>
再次对项目打包就会包含第三方引用的 jar 包
#转载 https://www.cnblogs.com/lwyang/p/12554097.html