maven切换到阿里云镜像

maven默认去中央仓库下载jar速度奇慢,切换成阿里的镜像源会快很多

maven  settings.xml配置

 

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">

<pluginGroups />
    <proxies />
        <servers />
           <mirrors >
               <mirror>
                   <!--该镜像的唯一标识符。id用来区分不同的mirror元素。 -->
                   <id>planetmirror.com</id>
                   <!--镜像名称 -->
                  <name>aliyun</name>
                  <!--该镜像的URL。构建系统会优先考虑使用该URL,而非使用默认的服务器URL。 -->
                 <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
                 <!--被镜像的服务器的id。例如,如果我们要设置了一个Maven中央仓库(http://repo1.maven.org/maven2)的镜像,就需要将该元素设置成central。这必须和中央仓库的id central完全一致。-->
             <mirrorOf>central</mirrorOf>
           </mirror>
    </mirrors>


    <localRepository>C:\manveRepository</localRepository>


</settings>

 

posted @ 2017-08-16 11:28  sky10001  阅读(5076)  评论(0编辑  收藏  举报