添加lib目录下的jar包到本地仓库
作者:互联网
如果不想把jar包加入仓库中,但又想在项目中使用,可以用以下的方式配置:
1、首先将要添加的jar包复制到项目中的libs文件夹下
2、然后在pom.xml中添加如下代码:
<dependency>
<groupId>x.x.x</groupId>
<artifactId>xxx</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/xxx.jar</systemPath>
</dependency>
标签:复制到,lib,仓库,xxx,jar,添加,libs,包到 来源: https://blog.51cto.com/dking/2908852