在Springboot项目中,使用Jenkins自动检测SVN自动构建发布项目,但是有些jar需要本地引入,无法从maven服务器下载,因为这些jar包是引用其他项目的jar包。
方式一
Maven依赖本地非repository中的jar包,依赖jar包放在WEB-INF/lib等目录下的情况客户端编译出错的处理。
Maven提供了scope为system的依赖,文档的原文如下:
system
This scope is similar to provided except thatyou have to provide the JAR which contains it explicitly.
The artifact is always available and is notlooked up in a repository.
这样就可以添加dependency而不需要再将lib目录下的jar包安装到本地库中了。
具体配置录下:
<dependency>
<groupId>org.apache</groupId>
<artifactId>test</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/lib/test.jar</systemPath>
</dependency>
方式二
安装本地jar包到maven的repository目录中,找到这个目录。
安装本地依赖jar包
mvn install:install-file -Dfile=/home/data/block_chain_client.jar -DgroupId=com.lx -DartifactId=blockchain-client -Dversion=1.0.0 -Dpackaging=jar
安装成功
安装成功修改pom.xml文件(会报错,但是运行正常)
<dependency>
<groupId>org.apache</groupId>
<artifactId>test</artifactId>
<version>1.0</version>
</dependency>
网友评论