报错信息:
Failed to execute goal on project jeecg-boot-base-core: Could not resolve dependencies for project xxx: Could not find artifact com.aspose:aspose-words:jar:15.8.0 in aliyun (http://maven.aliyun.com/nexus/content/groups/public)
问题描述:项目中有个word文档转pdf的需求,作者放弃了jacob选用了aspose-words类库,这个类库既支持linux环境下又支持windows环境下word转pdf。但是,阿里云maven仓库没有这个包,导致项目打包运行失败。
解决方法:
第一种,下载aspose-words-15.8.0-jdk16.jar包后,通过maven命令手动安装到本地maven仓库
mvn install:install-file -DgroupId=com.aspose -DartifactId=aspose-words -Dversion=15.8.0 -Dpackaging=jar -Dfile=aspose-words-15.8.0-jdk16.jar
-DgroupId:pom.xml中groupId
-DartifactId:pom.xml中artifactId
-Dversion:pom.xml中0.0.1-SNAPSHOT
-Dpackaging:jar或war,包的后缀名
-Dfile:包的本地真实地址,如果像作者这么写,需要在jar所在的目录下执行该命令,否则会找不到
pom信息参考
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>15.8.0</version>
</dependency>
第二种:将下载的jar包放在项目路径下,在pom中直接引用如果linux环境下上面方式还是找不到包则使用这种方式。pom引用方式参考:
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>15.8.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/aspose-words-15.8.0-jdk16.jar</systemPath>
</dependency>
systemPath:指定了引用jar包所在的位置,${project.basedir}指定是在当前项目下。
配置完之后,可以实现idea中本地导包,但是在linux环境下还是有问题,需要在pom中进一步配置信息完整的配置参考如下:
<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>
以上是以解决aspose-words-15.8.0-jdk16.jar找不到问题为例,此同类型问题均可尝试以上两种解决方案。参考文章1,这篇文章解释一些原因,但是对于解决问题提出的方案作者持保留态度,作者根据这篇文章的解决方案是没解决掉问题。