关于使用阿里云MAVEN镜像仓库

Posted 武神酱丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于使用阿里云MAVEN镜像仓库相关的知识,希望对你有一定的参考价值。

由于国内的某些不可明确的原因 国内连接google的时候十分慢,使得看github上的项目十分慢,这里我们可以修改build.gradle下的文件来使用阿里云仓库同步 会更快:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {

        maven {
            url ‘http://maven.aliyun.com/nexus/content/groups/public/‘
        }
        google()
        jcenter()
        
    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:3.4.0‘
        
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven {
            url ‘http://maven.aliyun.com/nexus/content/groups/public/‘
        }
        google()
        jcenter()
        
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

 

 

这样就可以使用阿里云的maven仓库了,更加方便的查看别人的demo或者项目了

以上是关于关于使用阿里云MAVEN镜像仓库的主要内容,如果未能解决你的问题,请参考以下文章

maven替换中央仓库,阿里云镜像下载及自定义本地仓库位置

阿里云中央仓库配置

阿里云maven仓库镜像

maven配置阿里云镜像仓库

一键安装Maven--配置本地仓库--配置阿里云镜像

maven仓库配置阿里云镜像