Maven导入本地jar包

1.在本地maven仓库安装本地jar包

maven install可以把指定的文件安装到本地maven仓库(使用maven指令前需要安装apache maven)。有三种install方式:
1.指定jar包、groupid、artifactId和version,maven会自动生成相应的pom.xml文件。

1
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>

2.如果jar包是用maven打包生成的,可以直接指定jar包和pom.xml文件。

1
mvn install:install-file -Dfile=<path-to-file> -DpomFile=<path-to-pomfile>

3.如果jar包是用maven打包生成的,maven 2.5版本会自动根据jar包生成pom.xml文件。

1
mvn install:install-file -Dfile=<path-to-file>

下面按照方法(1)给出一个例子,方法(2)和(3)类似:

1
mvn install:install-file -Dfile=\jdbc8-1.8.jar -DgroupId=com.dm -DartifactId=DmJdbcDriver18 -Dversion=1.8 -Dpackaging=jar

项目的pom.xml添加DmJdbcDriver18-1.8.jar包

1
2
3
4
5
<dependency>
<groupId>com.dm</groupId>
<artifactId>DmJdbcDriver18</artifactId>
<version>1.8</version>
</dependency>

2.把本地jar包放在项目的某个目录中

把本地jar包放在项目的某个目录中,就可以在pom.xml中引用该jar包了。在项目中构建目录,pom.xml添加reposiroty和dependency:

1
2
3
4
5
6
7
8
9
10
11
12
<repositories>
<repository>
<id>localrepository</id>
<url>file://${basedir}/repo</url>
</repository>
</repositories>

<dependency>
<groupId>nlp</groupId>
<artifactId>localjar</artifactId>
<version>1.0.0</version>
</dependency>

3.使用scope system依赖

和方法2类似,pom.xml添加dependency,但不需要添加。这种方法可能出现奇怪的错误,所以不推荐使用。

1
2
3
4
5
6
7
<dependency>
<groupId>nlp</groupId>
<artifactId>localjar</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/repo/nlp/localjar/1.0.0/LocalJar.jar</systemPath>
</dependency>

欢迎关注我的其它发布渠道