添加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>

上一篇:队列的使用


下一篇:cgic在ARM上移植步骤