maven工程怎么引入自己打的jar包

如题所述

步骤:
1.cmd命令进入该jar包所在路径
2.执行命令:
mvn install:install-file -Dfile=lucene-queryparser-4.6.1.jar
-DgroupId=org.apache.lucene -DartifactId=lucene-queryparser
-Dversion=4.6.1 -Dpackaging=jar
其中:-DgroupId和-DartifactId的作用是指定了这个jar包在repository的安装路径,只是用来告诉项目去这个路径下寻找这个名称的jar包。
比如:
mvn install:install-file -Dfile=hadoop-hdfs-2.2.0.jar
-DgroupId=org.apache.hadoop -DartifactId=hadoop-hdfs -Dversion=2.2.0 -D
-Dpackaging=jar
就是指把hadoop-hdfs-2.2.0.jar安装到repository\org.apache.hadoop\hadoop-hdfs\2.2.0目录下,执行完命令后,如果需要在项目中使用这个jar,则在pom.xml中添加如下配置即可:
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs</artifactId>
<version>2.2.0</version>
</dependency>

注意在每个参数前有个-D

二、怎么在pom.xml中添加项目中libs下的jar呢,而不是从本地仓库中添加?

1、首先将要添加的jar包复制到项目中的libs文件夹下

2、然后在pom.xml中添加如下代码:

[html] view plain copy
<dependency>
<groupId>htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>2.21-OSGi</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/htmlunit-2.21-OSGi.jar</systemPath>
</dependency>
注意scope元素和systemPath元素,其中systemPath元素指定的就是jar包在项目中的路径。
注意libs文件夹下的这个jar包不需要Add to Build Path
温馨提示:内容为网友见解,仅供参考
无其他回答

maven工程打包引入本地jar包
第一种方式:通过Maven生成本地仓库包,然后利用dependency引入依赖。1. 首先,确保本地Maven仓库已配置。如果未配置,可参考Maven官方文档进行设置。配置完成后,将本地jar包添加到本地仓库。2. 在Maven工程的pom.xml文件中,使用<dependencyManagement>元素管理依赖,确保所有子模块共享一致的依赖版本。3. ...

如何在maven中添加本地jar包
1、首先在项目根目录中创建一个lib文件夹,将jar包拷贝到lib文件夹下 2、然后在maven的pom.xml中配置 3、这里的groupId和artifactId以及version都是可以随便填写的 ,scope必须填写为system,而systemPath现在jar包的地址就可以了 4、最后必须在maven打包的过程中加入我们这个jar包。因为项目运行的时候需要...

MAVEN如何引入或者编译本地的jar包
maven添加本地jar包很简单。只需要将jar包在本地所在的路径加到pom.xml的dependences中即可。配置如下:<dependency> <groupId>javax.servlet<\/groupId> <artifactId>servlet-api<\/artifactId> <version>1.1.1<\/version> <scope>system<\/scope> <!--本地jar的路径,相对或者绝对都可以--> <systemP...

maven安装jar到本地仓库(maven本地安装jar包)
如何把一个jar包打包到本地maven仓库1、直接写一个空的pom,里头包含对所需要jar包的依赖,通过这种方式希望将jar包下载到本地仓库。但是应用代码中没用到,maven命令没有下载这个jar包到本地仓库。2、发现不行:\\x0d\\x0a直接写一个空的pom,里头包含对所需要jar包的依赖,通过这种方式希望将jar包...

maven怎么配置本地jar包
system scope引入的包,在使用jar-with-dependencies打包时将不会被包含,可以使用resources将本地包打进jar-with-dependencies <build> <plugins> <plugin> <groupId>org.apache.maven.plugins<\/groupId> <artifactId>maven-shade-plugin<\/artifactId> <executions> <execution> <id>make-assembly<\/id>...

如何在maven的pom.xml中添加本地jar包
步骤:1.cmd命令进入该jar包所在路径 2.执行命令:mvn install:install-file -Dfile=lucene-queryparser-4.6.1.jar -DgroupId=org.apache.lucene -DartifactId=lucene-queryparser -Dversion=4.6.1 -Dpackaging=jar 其中:-DgroupId和-DartifactId的作用是指定了这个jar包在repository的安装路径,只...

如何在maven中添加jar包
1、首先,确认Maven环境搭建配置完成;2、创建项目的时候会生成一个pom.xml的文件,并进行如下配置:这样就将junit的jar包加入了。

请教eclipse maven 如何 "批量" 添加本地jar包
方法\/步骤 先创建一个基于maven的项目,点击打开pom.xml文件 点击Dependencies标签页,然后点击Dependencies中的add按钮,输入想添加的jar包名字,就会出现下图中所示,它会把对应名称的所有版本jar包列出来 点击OK之后,在pom.xml会带回jar包的信息,type表示依赖包的类型,Scope表示这个依赖包的作用周期等等...

把本地的jar包插入到本地仓库
version`保持一致。最后,使用命令`mvn install:install-file -Dfile=本地jar包路径 -DgroupId=jar包的groupId -DartifactId=jar包的artifactId -Dversion=jar包的版本号`完成本地jar包的插入。操作至此,本地jar包已成功插入到本地仓库中,后续项目构建时,Maven将能够自动识别并使用此jar包。

如何将jar包放入maven仓库中
(1)、将ojdbc14-10.2.0.4.jar导入到maven仓库中 E:\\workspace\\lib>mvn install:install-file -Dfile=ojdbc14-10.2.0.4.jar -DgroupId= com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar (2)、将cglib-nodep-3.1.jar导入到maven仓库中 E:\\workspace\\lib>...

相似回答