手动下载jar包导入mvn repo的方法

转载自:http://www.360doc.com/content/19/1101/16/67125028_870487351.shtmlhtml

经常使用Maven仓库网址:
http://mvnrepository.com/
http://search.maven.org/
http://repository.sonatype.org/content/groups/public/
http://people.apache.org/repo/m2-snapshot-repository/
http://people.apache.org/repo/m2-incubating-repository/spring

 

第一个是我最经常使用的,而后是第二个,而后是第三个,最后两个是 Apache 的私有仓库,我还没用过,不过感受应该还能够吧...
接下来,仍是一向的做风,使用截图通俗易懂的方式来解说:

若是你看过个人上一篇:Spring邮件服务之Html:Maven + Spring SMTP Mail With Html 文章,里面须要用到一个
spring-context-support-3.1.0.RELEASE.jar 的 JAR 包,我把它安装到本地仓库的时候把图截了下来,顺便写了这篇文章,
供有须要的网友参考。
首先,到 http://mvnrepository.com/ 这个网,在搜索栏中输入你要搜索的 JAR 包的关键字来搜索,下面直接贴图:

@1图


@2


@3


以 spring-context-support-3.1.0.RELEASE.jar 为例,在 @3图中已经给出这个 jar 包的 groupId,artifactId,version信息,
手动安装的时候这些信息不要改,不然 Maven 项目移植的话,jar 包下载就会失败。顺便把这信息帖下面,方便对照:

apache

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context-support</artifactId>
    <version>3.1.0.RELEASE</version>
</dependency>


Maven 安装 JAR 包的命令是:

maven

mvn install:install-file -Dfile=jar包的位置 -DgroupId=上面的groupId -DartifactId=上面的artifactId -Dversion=上面的version -Dpackaging=jar


例如:
我下载的这个 jar 包是放到了 D:\mvn 目录下(D:\mvn\spring-context-support-3.1.0.RELEASE.jar)
那么我在 cmd 中敲入的命令就应该是:

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

回车,显示安装成功:

spa

相关文章
相关标签/搜索