修改Intelij IDEA的maven依据下载为国内镜像(阿里)
1、win7环境,默认情况下在用户目录的.m2下自己新建setting文件。QQ群交流:697028234
.m2\settings.xml
2、settings.xml文件内容为:
<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 https://maven.apache.org/xsd/settings-1.0.0.xsd"> <mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> </settings>
3、修改配置
注意,需要点击上图所示右下角的override。