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

Maven工程引入本地jar包

时间:2018-12-29 18:38:59      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:color   enc   apache   目录   path   get   cto   必须   创建   

项目中要引入另一个项目的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路径下。

 

Maven工程引入本地jar包

标签:color   enc   apache   目录   path   get   cto   必须   创建   

原文地址:https://www.cnblogs.com/zhoudy/p/10197145.html

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