Maven镜像更换为阿里云中央仓库(精)

前言

maven仓库默认在国外,使用难免很慢,尤其是下载依赖的时候,换为国内镜像,让你感受飞一般的感觉。国内支持maven镜像的有阿里云,开源中国等,这里换为阿里云的。

更换

修改maven配置文件settings.xml (当然也可以在用户home目录.m2下面添加一个settings.xml文件)

$ cd  $M2_HOME/conf/
$ sudo vim settings.xml

在中加入

<mirror>
        <id>nexus-aliyunid>
        <mirrorOf>centralmirrorOf>
        <name>Nexus aliyunname>
        <url>http://maven.aliyun.com/nexus/content/groups/publicurl>
mirror>
#pom.xlm
<repositories>
        <repository>
            <id>nexus-aliyunid>
            <name>Nexus aliyunname>
            <url>http://maven.aliyun.com/nexus/content/groups/publicurl>
        repository>
    repositories>

保存即可。

结束语

好了,开始享受100倍下载速度吧
————————————————-华丽的分界线—————————————————————-
tips:

  • 下载archetype-catalog.xml文件,删除不用的骨架,保留常用的那几个。
# 直接没法下载有语法报错。
$ wget http://maven.aliyun.com/nexus/content/groups/public/archetype-catalog.xml

Maven镜像更换为阿里云中央仓库(精)_第1张图片 多了一个’^M’
- archetypeCatalog用来指定maven-archetype-plugin读取archetype-catalog.xml文件的位置:

    internal——maven-archetype-plugin内置的

    local——本地的,位置为~/.m2/archetype-catalog.xml

    remote——指向Maven中央仓库的Catalog
  • 修改阿里云镜像后,若不能使用命令’mvn archetype:generate -DarchetypeCatalog=local’
$ cp ~/.m2/archetype-catalog.xml ~/.m2/repository/

即可。

你可能感兴趣的:(开发工具)