Bootstrap

IDEA更改maven镜像源

IDEA更改maven镜像源

1. 像源配置

桌面选中IDEA右键—>打开文件所在位置,打开后所处位置默认在bin目录下,返回上一层目录。

按照 plugins\maven\lib\maven3\conf 的顺序,依次打开,在conf文件目录下出现一个setting.xml的文件。(ps:如果没有,请忽略本文,自行创建即可)

image-20211111160404635

使用记事本之类的编辑软件(notepad++等,方便搜寻)打开,大概是150行左右的地方,添加如下所示的阿里镜像站代码块,由阿里mirror提供

打开 Maven 的配置文件(windows机器一般默认放在maven安装目录的conf/settings.xml),在<mirrors></mirrors>标签中添加 mirror 子节点:

<mirror>
    <id>aliyunmaven</id>
    <mirrorOf>*</mirrorOf>
    <name>阿里云公共仓库</name>
    <url>https://maven.aliyun.com/repository/public</url>
</mirror>

image-20211111155248961

2. 补充说明

上述修改配置完成后,有些依赖下载时还时会出现迟钝的情况,这时我们需要在IDEA内部设置更改一下镜像的路径达到全局提速的效果,如下所示

image-20211111155708585

完成配置上述配置后,再次下载依赖时你能真实的感受到走路和坐火箭的区别

3. 像源生效

重启IDEA,如果拉取编译或者同步时显示路径中包含aliyun.com的url则表示完成配置

Downloading from alimaven: http://maven.aliyun.com/nexus/content/repositories/central/org/jetbrains/......

3.1 特殊情况处理

由于使用了HTTPS,存在着SSL证书验证的问题,因此需要在IDEA中添加配置来忽略SSL证书的验证

下载过程中虽然显示已经配置过阿里云的镜像,但是新版本的阿里云镜像不再支持http下载,只支持https下载,再次做出修改配置

-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true

image-20211111162508508

配置完成后apply即可,重启IDEA生效配置。

4. 扩展模块

如果有需求想使用其它代理仓库,可在<repositories></repositories>节点中加入对应的仓库使用地址。以下使用spring代理仓为例:

<repository>
    <id>spring</id>
    <url>https://maven.aliyun.com/repository/spring</url>
    <releases>
        <enabled>true</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>

4.1 gradle 配置

在 build.gradle 文件中加入以下代码:

allprojects {
    repositories {
        maven { url 'https://maven.aliyun.com/repository/public/' }
        mavenLocal()
        mavenCentral()
    }
}

如果想使用 maven.aliyun.com 提供的其它代理仓,以使用 spring 仓为例,代码如下:

allprojects {
    repositories {
        maven { url 'https://maven.aliyun.com/repository/public/' }
        maven { url 'https://maven.aliyun.com/repository/spring/'}
        mavenLocal()
        mavenCentral()
    }
}

@Author:懒羊羊

;