有的时候maven项目中没有我们所要的jar, 那么我们可以直接将本地的jar加入项目开发, 当然其中有一个博客是将 https://www.jianshu.com/p/350f246cf7ac
本地jar加入本地maven, 那样也是可以, 但是如果是多人开发的话每个人都要求吧jar加入本地maven, 很麻烦, 那么有没有一种直接点的方式,一劳永逸呢,淡然有
在项目新建一个lib文件夹,将本地jar放到里面
<dependency>
<groupId>dingding</groupId>
<artifactId>taobao-sdk-java-auto_1479188381469-20191217</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/taobao-sdk-java-auto_1479188381469-20191217.jar</systemPath>
</dependency>
另外,,,,
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
includeSystemScope标签必须要加上, 否则打包后会异常
然后就可以了