阿里云maven仓库配置


阿里云maven仓库配置

maven.aliyun.com代理了很多公共的 maven 仓库。使用maven.aliyun.com中的仓库地址作为下载源,速度更快更稳定。

https://help.aliyun.com/document_detail/102512.html?spm=a2c40.aliyun_maven_repo.0.0.36183054XM40LO#h2-u914Du7F6Eu6307u53572

上面链接为阿里云官方给出的仓库列表配置指南

我们主要使用 public 库(central 仓和 jcenter 仓的聚合仓),这里把 maven 配置和 gradle 配置粘贴出来:

maven 配置

打开 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>
gradle 配置

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

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


发表评论

邮箱地址不会被公开。 必填项已用*标注