赞
踩
1、在项目的resources目录下的lib文件夹(没有lib文件夹就创建一个lib文件夹)放入test-1.3.1.jar,如图
2、在pom文件中对应的位置
引入:
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>sdk.core</artifactId>
<version>3.3.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/test-1.3.1.jar</systemPath>
</dependency>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
完成以上两步,即可在本地运行项目时使用本地jar包,项目打包时也能使用到本地jar包。
备注说明:
1).添加 <scope>system</scope>
2).systemPath这个路径是jar包的路径。${project.basedir}
只是一个系统自己的常量。
3).使用这种方式,在将项目用Maven打包是需要在 标签中加入:
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。