maven仓库添加本地jar
Posted 易大侠y
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven仓库添加本地jar相关的知识,希望对你有一定的参考价值。
一、将jar添加到本地仓库的做法:
以下面pom.xml依赖的jar包为例:
实际项目中pom.xml依赖写法:
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context-support</artifactId>
- <version>3.1.0.RELEASE</version>
- </dependency>
Maven 安装 JAR 包的命令是:
- mvn install:install-file
- -Dfile=jar包的位置
- -DgroupId=上面的groupId
- -DartifactId=上面的artifactId
- -Dversion=上面的version
- -Dpackaging=jar
例如我的这个spring-context-support-3.1.0.RELEASE.jar 文件放在了"D:\mvn\"中
则命令为:
mvn install:install-file
-Dfile=D:\mvn\spring-context-support-3.1.0.RELEASE.jar
-DgroupId=org.springframework
-DartifactId=spring-context-support
-Dversion=3.1.0.RELEASE
-Dpackaging=jar
注意:任何路径和名称不要有中文和空格,以防出现莫名其妙的错误。
二、不讲jar包添加到本地仓库也可在maven工程中使用外部jar包的做法:
假设将包htmlparser.jar放入了项目下的lib目录中 :
-> ${project}/lib/htmlparser.jar
则pom.xml文件中依赖可以如下:
- <dependency>
- <groupId>com.htmlparser</groupId>
- <artifactId>htmlparser</artifactId>
- <version>2.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/lib/htmlparser.jar</systemPath>
- </dependency>
转自:http://blog.csdn.net/a491857321/article/details/51085167
以上是关于maven仓库添加本地jar的主要内容,如果未能解决你的问题,请参考以下文章