1.使用过maven的朋友们肯定知道,如果本地没有仓库,maven现在的jar都是从国外的网站下载,速度是非常的慢的,原来oschina提供了仓库,但是现在已经关闭了,现在阿里的镜像是可以帮我们解决这个问题的。
1.修改maven的setting文件
在<mirror>中添加已经配置
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<mirrorOf>*</mirrorOf>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
完整配置截图
这样就完美解决了maven下载jar慢的问题