IntellJ idea maven项目带有第三方jar包

Posted baby123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IntellJ idea maven项目带有第三方jar包相关的知识,希望对你有一定的参考价值。

今天用maven打包时,提示程序包com.aspose.slides不存在

原来第三方jar是直接导入的,打包时没找到

那项目中带有第三方jar包,怎么打包?

方法:

1、根路径建立lib包,将第三方jar复制进去

2、在pom.xml文件中

(1)dependency部分加入

<dependency>
    <groupId>aspose.slides</groupId>
    <artifactId>slides</artifactId>
    <version>15.9.0</version>
    <scope>system</scope>
    <systemPath>${basedir}/lib/aspose.slides-15.9.0.jar</systemPath>
</dependency>

(2)build部分

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <!-- 加入部分开始-->
            <configuration>
                 <includeSystemScope>true</includeSystemScope>
            </configuration>
             <!-- 加入部分结束-->
        </plugin>
    </plugins>
</build>                

修改后打包成功

 

以上是关于IntellJ idea maven项目带有第三方jar包的主要内容,如果未能解决你的问题,请参考以下文章

解决Intellj IDEA不识别SpringBoot项目

IntelliJ IDEA导入项目如何启动?

IntellJ IDEA下SpringBoot项目启用本地Tomcat

IntelliJ IDEA导入Gradle项目,并启动项目

关于maven的问题,不知道为啥Eclipse导入maven工程以后报错

intellj idea中编译打包部署与eclipse中的差异