zoukankan      html  css  js  c++  java
  • 两个比较稳定的maven mirror

    两个比较稳定的maven mirror

     

    <mirror>

    <id>jboss-public-repository-group</id>

    <mirrorOf>central</mirrorOf>

    <name>JBoss Public Repository Group</name>

    <url>http://repository.jboss.org/nexus/content/groups/public</url>

    </mirror>

     

    <mirror>

    <id>ibiblio</id>

    <mirrorOf>central</mirrorOf>

    <name>Human Readable Name for this Mirror.</name>

    <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>

    </mirror>

    另外转自其它出处的: 

    Xml代码  收藏代码
    1.     
    2. <mirrors>  
    3. <mirror>  
    4.       <id>repo2</id>  
    5.       <mirrorOf>central</mirrorOf>  
    6.       <name>Human Readable Name for this Mirror.</name>  
    7.       <url>http://repo2.maven.org/maven2/</url>  
    8.     </mirror>  
    9. <mirror>  
    10.       <id>net-cn</id>  
    11.       <mirrorOf>central</mirrorOf>  
    12.       <name>Human Readable Name for this Mirror.</name>  
    13.       <url>http://maven.net.cn/content/groups/public/</url>   
    14.     </mirror>  
    15. <mirror>  
    16.       <id>ui</id>  
    17.       <mirrorOf>central</mirrorOf>  
    18.       <name>Human Readable Name for this Mirror.</name>  
    19.      <url>http://uk.maven.org/maven2/</url>  
    20.     </mirror>  
    21. <mirror>  
    22.       <id>ibiblio</id>  
    23.       <mirrorOf>central</mirrorOf>  
    24.       <name>Human Readable Name for this Mirror.</name>  
    25.      <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>  
    26.     </mirror>  
    27. <mirror>  
    28.       <id>jboss-public-repository-group</id>  
    29.       <mirrorOf>central</mirrorOf>  
    30.       <name>JBoss Public Repository Group</name>  
    31.      <url>http://repository.jboss.org/nexus/content/groups/public</url>  
    32.     </mirror>  
  • 相关阅读:
    再谈AR中的图像识别算法
    turret
    Unity之MVC 模式
    Unity之Application.runInBackground = true
    快速了解和使用Photon Server
    Unity Standard Assets 简介之 CrossPlatformInput
    Lua的闭包详解(终于搞懂了)
    代码大全、人月神话和你的灯亮着吗三本软件开发设计方面好书
    大数据入门推荐
    迷茫的旅行商:一个无处不在的计算机算法问题
  • 原文地址:https://www.cnblogs.com/chenying99/p/2559218.html
Copyright © 2011-2022 走看看