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>  
  • 相关阅读:
    Spring Boot ELK Kafka 自定义断路器Circuit-Breaker
    据库主体在该数据库中拥有架构,无法删除解决方法
    AlloyImage
    引用嵌入式DLL方法
    C# C++ 字符串传递
    高效取图片像素的方法
    Microsoft Active Accessibility
    IIS配置支持APK下载
    C# gettime实现
    android快捷键
  • 原文地址:https://www.cnblogs.com/chenying99/p/2559218.html
Copyright © 2011-2022 走看看