zoukankan      html  css  js  c++  java
  • 比较常用的几个maven第三方镜像

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

    repo2的:
    <mirror> 
        <id>repo2</id> 
        <mirrorOf>central</mirrorOf> 
        <name>Human Readable Name for this Mirror.</name> 
        <url>http://repo2.maven.org/maven2/</url> 
    </mirror>

    net-cn的:
    <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>

    uk的:
    <mirror> 
        <id>uk</id> 
        <mirrorOf>central</mirrorOf> 
        <name>Human Readable Name for this Mirror.</name> 
        <url>http://uk.maven.org/maven2/</url> 
    </mirror>

    ibiblio的:
    <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>

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

    希望有帮到你

  • 相关阅读:
    HTML5 jQuery图片上传前预览
    html5中form表单新增属性以及改良的input标签元素的种类
    PHP邮箱的正则表达式
    PHP手机号码正则表达式
    CSS中设置div垂直居中
    Linux服务器查看内存占用命令
    linux压缩解压文件
    网页是静态还是伪静态?
    帝国cms内容批量替换
    帝国CMS【操作类型】说明详解
  • 原文地址:https://www.cnblogs.com/limming/p/6139904.html
Copyright © 2011-2022 走看看