maven常用镜像

来源:互联网 发布:阿里云工程师待遇 编辑:程序博客网 时间:2024/04/29 19:07
<mirror>
        <id>repo2</id>
        <mirrorOf>central</mirrorOf>
        <name>Human Readable Name for this Mirror.</name>
        <url>http://repo2.maven.org/maven2/</url>
    </mirror>
 
<mirror>
    <id>net-cn</id>
    <mirrorOf>central</mirrorOf>
    <name>Human Readable Name for this Mirror.</name>
    <url>http://maven.net.cn/content/groups/public/</url>   
 </mirror>



<mirror>  
      <id>CN</id>  
      <name>OSChina Central</name>                                                                                                                         
      <url>http://maven.oschina.net/content/groups/public/</url>  
      <mirrorOf>central</mirrorOf>  
    </mirror> 

 
  <mirror>     
      <id>mirrors.ibiblio.org</id>     
      <name>mirrors.ibiblio.org</name>     
      <url>http://mirrors.ibiblio.org/maven2/</url>     
      <mirrorOf>central</mirrorOf>     
    </mirror>
0 0