如果不想把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>