阿里云 maven 仓库镜像

如果在国内用过 maven 的大概都有这样的体会:慢! 其他很多工具大部分国内都有镜像源,但是 maven 并没太多选择,以前 OSC 有一份,后来关闭了。就在我忍受龟速使用官方 maven 仓库的时候,阿里云的 maven 镜像低调上线了,简直就是国内开发者的福音!

编辑 maven 根目录下的 conf/settings.xml 文件,找到 mirrors 节点,添加以下内容:

1
2
3
4
5
6
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>

保存即可。 如果使用 Gradle,增加配置:

1
2
3
repositories {
maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
}

再次使用 maven,享受飞一般的感觉:-)