转载

在IntellJ IDEA中 为 Maven 配置阿里云镜像源

在IntellJ IDEA中 为 Maven 配置阿里云镜像源

Maven的默认镜像源在国内的速度实在是 非常非常的慢 ,下载完依赖基本上也可以去吃饭了。所以为了浪费时间,花一分钟将Maven配置为阿里云的镜像源。

话不多说直接开始,本文使用的系统为Windows,但linux下也是大同小异,只需找到对应的settings.xml即可。

打开 IDEA -> setting ,左上角搜索框输入: Maven

在IntellJ IDEA中 为 Maven 配置阿里云镜像源

而一般情况下在 23 箭头指向的目录下面没有对应的 settings.xml 文件,我们可以新建一个 settings.xml ,并把下方的配置代码复制进去。需要注意的是,需要点击上图所示右下角的override。

<?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 />

    <localRepository>D:/server/maven/repository</localRepository>

    <mirrors>
        <mirror>
            <id>alimaven</id>
            <mirrorOf>central</mirrorOf>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
        </mirror>
        <mirror>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
        <mirror>
            <id>central</id>
            <name><a href="https://www.miaoroom.com/tag/maven" data-toggle="tooltip" title="查看更多关于 Maven 的文章" target="_blank">Maven</a> Repository Switchboard</name>
            <url>http://repo1.maven.org/maven2/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
        <mirror>
            <id>repo2</id>
            <mirrorOf>central</mirrorOf>
            <name>Human Readable Name for this Mirror.</name>
            <url>http://repo2.maven.org/maven2/</url>
        </mirror>
        <mirror>
            <id>ibiblio</id>
            <mirrorOf>central</mirrorOf>
            <name>Human Readable Name for this Mirror.</name>
            <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
        </mirror>
        <mirror>
            <id>jboss-public-repository-group</id>
            <mirrorOf>central</mirrorOf>
            <name>JBoss Public Repository Group</name>
            <url>http://repository.jboss.org/nexus/content/groups/public</url>
        </mirror>
        <mirror>
            <id>google-maven-central</id>
            <name>Google Maven Central</name>
            <url>https://maven-central.storage.googleapis.com
            </url>
            <mirrorOf>central</mirrorOf>
        </mirror>
        <!-- 中央仓库在中国的镜像 -->
        <mirror>
            <id>maven.net.cn</id>
            <name>oneof the central mirrors in china</name>
            <url>http://maven.net.cn/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
    </mirrors>
</settings>

repository 则是Maven依赖的仓库,你可以根据自己的喜好进行设置

如果是linux系统,操作过程基本相同,只是settings.xml文件的存放路径不一样,不过都可以通过上面截图所示的页面中查到

原文  https://www.miaoroom.com/code/note/maven-mirrors-settings.html
正文到此结束
Loading...