SpringBoot项目如何使用封装的SDK/JAR
一、依赖做出修改
在src同级的目录下新建一个目录例如sdk/lib……,用以收纳项目需要使用的SDK/JAR。
在pom.xml中引入时,加入上图所示的标签即可。
也可以将该JAR上传至公司的Maven私服/Alibaba的Maven中央仓库/Apache的Maven仓库,然后通过Maven GAV坐标引入。
二、打包插件也需要做出修改
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- 打包时引入system scope域的(非Maven仓库的)本地jar(/sdk/xxx.jar)至最终的jar -->
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>