maven 镜像仓库配置

. 中央仓库

<mirror>        

      <id> maven-net-cn</id>        
      <name> Maven China Mirror</name>        
      <url> http://maven.net.cn/content/groups/public/</url>        
      <mirrorOf> central</mirrorOf>        
    </mirror>

阿里
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>

 
原文地址:https://www.cnblogs.com/shihx/p/13469060.html