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>

 

相关文章:

  • 2022-12-23
  • 2022-02-07
  • 2022-02-10
  • 2021-12-22
  • 2022-12-23
  • 2021-07-07
  • 2022-01-10
猜你喜欢
  • 2022-12-23
  • 2022-02-23
  • 2021-11-04
  • 2021-12-25
  • 2021-09-20
  • 2021-05-20
  • 2022-12-23
相关资源
相似解决方案