maven换仓库地址

Posted rrrzx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven换仓库地址相关的知识,希望对你有一定的参考价值。

在安装目录下的conf/setting.xml中添加

<mirrors>
    <mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>        
    </mirror>
</mirrors>

然后在项目的pom.xml添加

<repositories>
        <repository>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>

 

以上是关于maven换仓库地址的主要内容,如果未能解决你的问题,请参考以下文章

怎么查看maven本地仓库地址

怎样从maven的中央仓库中更新jar包到本地仓库

VIM 代码片段插件 ultisnips 使用教程

内网机器,使用mvn打包时怎样指定使用本地仓库,而不去外网(中央仓库)下载

MAVEN中央仓库地址大全

阿里maven仓库地址 和 oschina maven仓库地址