当前位置:   article > 正文

Maven项目引用本地jar包_maven 批量添加本地jar

maven 批量添加本地jar

1、在项目的resources目录下的lib文件夹(没有lib文件夹就创建一个lib文件夹)放入test-1.3.1.jar,如图
在这里插入图片描述

2、在pom文件中对应的位置引入:

   <dependency>
       <groupId>com.aliyun</groupId>
       <artifactId>sdk.core</artifactId>
       <version>3.3.1</version>
       <scope>system</scope>
       <systemPath>${project.basedir}/lib/test-1.3.1.jar</systemPath>
   </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <includeSystemScope>true</includeSystemScope>
    </configuration>
</plugin>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

完成以上两步,即可在本地运行项目时使用本地jar包,项目打包时也能使用到本地jar包。

备注说明:
1).添加 <scope>system</scope>

2).systemPath这个路径是jar包的路径。${project.basedir}只是一个系统自己的常量。

3).使用这种方式,在将项目用Maven打包是需要在 标签中加入:

<configuration>
 <includeSystemScope>true</includeSystemScope>
</configuration>
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/308106
推荐阅读
相关标签
  

闽ICP备14008679号