从零开发短视频电商 maven之pom引入第三方本地Jar并打包运行成功

背景

对接快递助手物流轨迹追踪功能,其官方提供了JavaSDK,但是并没有把其上传到maven公共库,也就导致我们无法很舒服的使用maven方式直接引入项目。

jar文件名称为:kdzs-open-api-sdk-20211119.jar

解决

方案一 可以自己把jar文件上传的maven私服。

初创团队还未搭建maven私服,故没使用这个方式

方案二 使用maven scope system

第一步: jar包存储位置如图所示:

从零开发短视频电商 maven之pom引入第三方本地Jar并打包运行成功

第二步:pom引入依赖方式如下

重点是scope,systemPath

<dependency>
    <groupId>com.kdzs</groupId>
    <artifactId>kdzs-open-api-sdk</artifactId>
    <version>20211119</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/lib/kdzs-open-api-sdk-20211119.jar</systemPath>
</dependency>

第三步:设置打包时包含SystemScope,否则打包的时候这个jar将被忽略

重点是<includeSystemScope>true</includeSystemScope>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <includeSystemScope>true</includeSystemScope>
            </configuration>
        </plugin>
    </plugins>
</build>
上一篇:Dalvik Debug Monitor解决无法连接模拟器,ddms无法连接模拟器,Dalvik Debug Monitor无日志输出,ddms无日志输出


下一篇:oes not appear to contain CMakeLists.txt. Specify --help for usage, or press the help button on the