maven切换到阿里云镜像

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

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>
相关文章
相关标签/搜索