• Maven国内阿里镜像(Maven下载慢的解决方法)


      Maven是当前流行的项目管理工具,但官方的库在国外经常连不上,连上也下载速度很慢。国内oschina的maven服务器很早之前就关了。今天发现阿里云的一个中央仓库,亲测可用。

    1 <mirror>
    2     <id>alimaven</id>
    3     <mirrorOf>central</mirrorOf>
    4     <name>aliyun maven</name>
    5     <url>https://maven.aliyun.com/repository/central</url>
    6 </mirror>

      修改${maven.home}/conf或者${user.home}/.m2文件夹下的settings.xml文件,在<mirrors>标签下加入上述内容即可。如下:

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
     3           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     4           xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
     5     <mirrors>
     6         <!-- 阿里云仓库 -->
     7         <mirror>
     8             <id>alimaven</id>
     9             <mirrorOf>central</mirrorOf>
    10             <name>aliyun maven</name>
    11             <url>https://maven.aliyun.com/repository/central</url>
    12         </mirror>
    13     
    14         <!-- 中央仓库1 -->
    15         <mirror>
    16             <id>repo1</id>
    17             <mirrorOf>central</mirrorOf>
    18             <name>Human Readable Name for this Mirror.</name>
    19             <url>http://repo1.maven.org/maven2/</url>
    20         </mirror>
    21     
    22         <!-- 中央仓库2 -->
    23         <mirror>
    24             <id>repo2</id>
    25             <mirrorOf>central</mirrorOf>
    26             <name>Human Readable Name for this Mirror.</name>
    27             <url>http://repo2.maven.org/maven2/</url>
    28         </mirror>
    29     </mirrors> 
    30 </settings>

       更多阿里云的Maven镜像仓库地址,如releases、snapshots,可参见https://maven.aliyun.com/mvn/view

  • 相关阅读:
    剑指05两个栈实现一个队列
    11 幂等 Idempotence
    13 SOAP
    leetcode143zigzag-conversion
    如何使用 awk 复合表达式
    IT 运行在云端,而云运行在 Linux 上
    Docker1.12 + Swarm 构建动态微服务应用
    教你在Ubuntu上体验Mac风格
    Zabbix-3.0.3结合Grafana-3.1.0给你想要的绘图
    Zabbix-3.0.3使用自带模板监控MySQL
  • 原文地址:https://www.cnblogs.com/xiongxx/p/6057558.html
Copyright © 2020-2023  润新知