【问题解决】maven外部第三方jar引入问题

报错信息:

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.asposegroupId>
	<artifactId>aspose-wordsartifactId>
	<version>15.8.0version>
dependency>

第二种:将下载的jar包放在项目路径下,在pom中直接引用如果linux环境下上面方式还是找不到包则使用这种方式。pom引用方式参考:

 <dependency>
    <groupId>com.asposegroupId>
    <artifactId>aspose-wordsartifactId>
    <version>15.8.0version>
    <scope>systemscope>
    <systemPath>${project.basedir}/src/main/resources/lib/aspose-words-15.8.0-jdk16.jarsystemPath>
dependency>

systemPath:指定了引用jar包所在的位置,${project.basedir}指定是在当前项目下。

配置完之后,可以实现idea中本地导包,但是在linux环境下还是有问题,需要在pom中进一步配置信息完整的配置参考如下:

  <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
                <configuration>
                    
                    <skip>falseskip>
                configuration>
            plugin>
        plugins>
      	 
        <resources>
            <resource>
                <directory>src/main/javadirectory>
                <includes>
                    <include>**/*include>
                includes>
            resource>
            <resource>
                <directory>src/main/resourcesdirectory>
                <includes>
                    <include>**/*include>
                includes>
            resource>
            <resource>
                <directory>src/main/resourcesdirectory>
                <targetPath>BOOT-INF/targetPath>
                <includes>
                    <include>/lib/*.jarinclude>
                includes>
            resource>
        resources>
    build>

以上是以解决aspose-words-15.8.0-jdk16.jar找不到问题为例,此同类型问题均可尝试以上两种解决方案。参考文章1,这篇文章解释一些原因,但是对于解决问题提出的方案作者持保留态度,作者根据这篇文章的解决方案是没解决掉问题。

你可能感兴趣的:(错误记录并解决)