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.</version>
<scope>system</scope>
<systemPath>${basedir}/lib/aspose.slides-15.9..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>

修改后打包成功

上一篇:一次Ubuntu16系统的找回root密码的过程


下一篇:李洪强iOS开发之 - 项目架构