前言:
很多时候在我们写项目对接三方的时候都需要导入三方jar包,而这时候我们用平常的pom里面写依赖发现导入不了(直接把jar包放在本地导入的话打包的话也不会将该依赖打包进我们项目的jar包),我在网上找了几种方法
第一种
使用mvn install:install-file
命令将第三方jar包安装到本地。
mvn install:install-file
是 Maven 命令行工具中的一个指令,用于将第三方库(JAR 文件)安装到本地 Maven 仓库中。这在你无法从 Maven 中央仓库或其他远程仓库获取到所需的依赖时非常有用。通过手动安装这些 JAR 文件到本地仓库,你可以在你的项目中像使用其他 Maven 依赖一样使用它们。
mvn install:install-file -Dfile=D:\company_project\src\main\resources\lib\test.jar -DgroupId=com.test -DartifactId=test-sdk -Dversion=1.2.7 -Dpackaging=jar
-Dfile:包的本地真实地址
-DgroupId:pom.xml中groupId(包名)
-DartifactId:pom.xml中artifactId(项目名)
-Dversion:pom.xml中version(版本号)
-Dpackaging:jar或war,包的后缀名
-Dclassifier:兄弟包的别名,
第二种
-
在resources下建一个存放外部jar包的文件夹,将Jar包放进去
-
之后在项目的pom文件里,添加这些依赖
<dependency>
<!-- groupId,artifactId,version 从要引入的jar包的元数据信息里面找 -->
<groupId>com.test</groupId>
<artifactId>test-sdk</artifactId>
<!-- scope要写system -->
<scope>system</scope>
<version>1.11.199</version>
<!-- systemPath 写本地的路径 -->
<systemPath>${basedir}/src/main/resources/lib/test.jar</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- 将 Scope 为 system 的依赖打入Jar包-->
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>