转自 https://blog.csdn.net/tengxing007/article/details/72588242
前言
maven仓库默认在国外,使用难免很慢,尤其是下载依赖的时候,换为国内镜像,让你感受飞一般的感觉。国内支持maven镜像的有阿里云,开源中国等,这里换为阿里云的。
更换
修改maven配置文件settings.xml (当然也可以在用户home目录.m2下面添加一个settings.xml文件)
$ cd $M2_HOME/conf/
$ sudo vim settings.xml
- 1
- 2
在中加入
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
#pom.xlm
<repositories>
<repository>
<id>nexus-aliyun</id>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</repository>
</repositories>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
保存即可。
结束语
好了,开始享受100倍下载速度吧
————————————————-华丽的分界线—————————————————————-
tips:
- 下载archetype-catalog.xml文件,删除不用的骨架,保留常用的那几个。
# 直接没法下载有语法报错。
$ wget http://maven.aliyun.com/nexus/content/groups/public/archetype-catalog.xml
- 1
- 2
多了一个’^M’
- archetypeCatalog用来指定maven-archetype-plugin读取archetype-catalog.xml文件的位置:
internal——maven-archetype-plugin内置的
local——本地的,位置为~/.m2/archetype-catalog.xml
remote——指向Maven中央仓库的Catalog
- 1
- 2
- 3
- 4
- 5
- 修改阿里云镜像后,若不能使用命令’mvn archetype:generate -DarchetypeCatalog=local’
$ cp ~/.m2/archetype-catalog.xml ~/.m2/repository/
- 1
即可。