码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-05-13 00:53:07      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:plugins   直接   怎么   结束   建立   存在   pos   nbsp   sys   

今天用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包

标签:plugins   直接   怎么   结束   建立   存在   pos   nbsp   sys   

原文地址:https://www.cnblogs.com/baby123/p/10854480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!