SpringBoot打包第三方本地jar包
作者:互联网
有一些包我们maven仓库找不到,那就只能在项目中引入本地jar包文件,但是maven打包的时候会显示没有这个jar包
首先我们把jar包放到resource下的lib文件夹
然后pom文件
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> <version>2.2</version> <scope>system</scope> <systemPath>${basedir}/src/main/resources/lib/commons-io-2.2.jar</systemPath> </dependency>
然后加个插件配置
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.3.7.RELEASE</version> <configuration> <includeSystemScope>true</includeSystemScope> <mainClass>com.voyah.provider.OtaProviderApplication</mainClass> </configuration> <executions> <execution> <id>repackage</id> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin>
主要是:
<includeSystemScope>true</includeSystemScope>
这部分
标签:SpringBoot,jar,boot,commons,maven,io,2.2,打包 来源: https://www.cnblogs.com/pxblog/p/16279941.html