Maven项目引入第三方jar包到问题处理
- 背景:
- 1. 下载jar包,通过maven命令手动安装到本地maven仓库
- 2. jar放到项目路径下,通过pom直接引用
背景:
开发中会遇到需要使用第三方依赖的时,第三方依赖在中央仓库没有,解决方法
1. 下载jar包,通过maven命令手动安装到本地maven仓库
mvn install:install-file -DgroupId=com.aspose -DartifactId=aspose-words -Dversion=18.2.0 -Dpackaging=jar -Dfile=aspose-words-18.2.0-jdk16.jar-DgroupId:pom.xml中groupId
-DartifactId:pom.xml中artifactId
-Dversion:pom.xml中0.0.1-SNAPSHOT
-Dpackaging:jar或war,包的后缀名
-Dfile:包的本地真实地址,需要在jar所在的目录下执行该命令,否则会找不到
pom
<!-- https://mvnrepository.com/artifact/com.aspose/aspose-words --><dependency><groupId>com.aspose</groupId><artifactId>aspose-words</artifactId><version>18.2</version></dependency>
2. jar放到项目路径下,通过pom直接引用
<dependency><groupId>com.aspose</groupId><artifactId>aspose-words</artifactId><version>18.2</version><scope>system</scope><systemPath>${project.basedir}/src/main/resources/lib/aspose-words-18.2-jdk16.jar</systemPath>
</dependency>systemPath:指定了引用jar包所在的位置,${project.basedir}指定是在当前项目下。
linux环境下还需要做如下配置
<build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><!--微服务模式下修改为true,跳过此打包插件,否则微服务模块无法引用--><skip>false</skip></configuration></plugin></plugins><!--配置resource信息,解决linux环境下,依赖jar包打入项目jar的BOOT-INF位置问题 --> <resources><resource><directory>src/main/java</directory><includes><include>**/*</include></includes></resource><resource><directory>src/main/resources</directory><includes><include>**/*</include></includes></resource><resource><directory>src/main/resources</directory><targetPath>BOOT-INF/</targetPath><includes><include>/lib/*.jar</include></includes></resource></resources></build>