Maven国内镜像-阿里云

国外的maven下载速度堪忧,大部分国内网络访问都很慢
国内的阿里云同样提供了maven的文件镜像
使用:
1.在maven的setting.xml加入下段代码即可使用阿里云的maven镜像

<mirrors>
    <mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>        
    </mirror>
  </mirrors>
原文地址:https://www.cnblogs.com/tingbogiu/p/6372844.html