zoukankan      html  css  js  c++  java
  • Maven常用仓库地址以及手动添加jar包到仓库

    http://www.blogjava.net/fancydeepin

    共有的仓库

    http://repository.sonatype.org/content/groups/public/
    http://mirrors.ibiblio.org/pub/mirrors/maven2/org/acegisecurity/
    http://mvnrepository.com/
    http://search.maven.org/

    私有的仓库

    http://repository.codehaus.org/
    http://snapshots.repository.codehaus.org/
    http://people.apache.org/repo/m2-snapshot-repository
    http://people.apache.org/repo/m2-incubating-repository/

    手动添加jar包到仓库

    @1图


    @2


    @3


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

    <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


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

    mvn install:install-file -Dfile=D:mvnspring-context-support-3.1.0.RELEASE.jar -DgroupId=org.springframework -DartifactId=spring-context-support -Dversion=3.1.0.RELEASE -Dpackaging=jar

    回车,显示安装成功:

  • 相关阅读:
    C语言strcasecmp()函数:判断字符串是否相等(忽略大小写)
    C语言之strrchr函数
    【Android】adb connect 手机的两种方式
    python web框架介绍对比
    sublime text 3 + python配置,完整搭建及常用插件安装
    Sublime text 3 快捷键:
    sublime text3 插件CTags
    sublime text 3 并列显示
    python 保存csv文件
    pandas 读取文件
  • 原文地址:https://www.cnblogs.com/exmyth/p/5693148.html
Copyright © 2011-2022 走看看