• 两个比较稳定的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>  
  • 相关阅读:
    CentOS下编译搭建LAMP环境
    RabbitMQ消息队列总结
    利用exif.js解决ios手机上传竖拍照片旋转90度问题
    服务器同一个tomcat部署2两个相同的项目
    php curl 转为 x-www-form-urlencoded 方式的坑
    Linux后台运行Java的jar包
    环境隔离与属性替换
    安装与使用adb
    HTTP状态码
    微信小程序官方文档
  • 原文地址:https://www.cnblogs.com/chenying99/p/2559218.html
Copyright © 2020-2023  润新知