maven-ali镜像网站setting.xml

Posted 南橘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven-ali镜像网站setting.xml相关的知识,希望对你有一定的参考价值。

简述

    使用maven管理jar包的时候,有可能会有网络限制,要解决的这个问题的话可以使用ali的镜像网站。

创建文件

    创建settings.xml,内容如下

 1 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
 2       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 3       xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
 4                           https://maven.apache.org/xsd/settings-1.0.0.xsd">
 5       <mirrors>
 6         <mirror>  
 7             <id>alimaven</id>  
 8             <name>aliyun maven</name>  
 9             <url>http://maven.aliyun.com/nexus/content/groups/public/</url>  
10             <mirrorOf>central</mirrorOf>          
11         </mirror>  
12       </mirrors>
13 </settings>

    然后将文件保存到C:\Users\Administrator\.m2下,和repository文件夹同级即可。

以上是关于maven-ali镜像网站setting.xml的主要内容,如果未能解决你的问题,请参考以下文章

idea下修改maven的setting.xml配置阿里云镜像

Maven可用setting.xml

maven阿里云镜像及本地仓库

idea下载不了jar包显示超时?

Maven修改镜像仓库地址

maven更改镜像路径为阿里镜像,以便下载速度快