怎样把本地的jar包引入到maven工程里面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样把本地的jar包引入到maven工程里面相关的知识,希望对你有一定的参考价值。

参考技术A 用maven的install命令 把本地jar install到maven本地库中 ,然后在项目中的pom中正常引用即可 , 至于如何install , 我就不写了 , 百度一下一大吧 , 自己尝试一下吧

Maven工程引入本地jar包

项目中要引入另一个项目的jar包, 不在开源库中。 

可以把包复制到本地maven仓库中;

也可以在配置文件中配置路径。

1.在src目录同级创建一个lib文件夹,将jar包拷贝到lib文件夹下

 

2. 然后在pom.xml中配置包依赖

  <dependency>
      <groupId>com.xxxxxxxl</groupId>
      <artifactId>xxxxxxxxx</artifactId>
      <version>0.0.1</version>
      <scope>system</scope>
      <systemPath>${project.basedir}/lib/xxxxxx.jar </systemPath>
  </dependency>

这里的groupId和artifactId以及version都是可以随便填写的 ,scope必须填写为system,而systemPath我们现在我们jar包的地址就可以了

 

3. 最后配置 在maven打包的过程中加入我们这个jar包。因为项目运行的时候需要这个Jar

<build>
<plugins> 
<plugin>
<groupId>org.apache.maven.XXXXXX</groupId>
                <artifactId>123456</artifactId>
                    <configuration>
                    <webResources>
                        <resource>
                            <directory>${project.basedir}/lib</directory>
                            <targetPath>WEB-INF/lib</targetPath>
                            <filtering>false</filtering>
                            <includes>
                                <include>**/*.jar</include>
                            </includes>
                        </resource>
                    </webResources>
                </configuration>
                <version>2.1.1</version>
</plugin>
</plugins>
</build>

 

上面这个配置 会指定打包的时候把 directory路径下的包复制到WEB-INF/lib路径下。

 

以上是关于怎样把本地的jar包引入到maven工程里面的主要内容,如果未能解决你的问题,请参考以下文章

Maven依赖的是本地工程还是仓库jar包

java中maven引用拥有同名方法的jar包的问题

spring-boot-maven-plugin 安装本地jar 包

Maven依赖的是本地工程还是仓库jar包?

怎么把jar包加入到maven dependencies

转:MAVEN依赖的是本地工程还是仓库JAR包?