其他分享
首页 > 其他分享> > gradle repo conf - maven-central.storage-download.googleapis.com

gradle repo conf - maven-central.storage-download.googleapis.com

作者:互联网

 

    repositories {
        google()
        jcenter()
        maven { // The google mirror is less flaky than mavenCentral()
         url "https://maven-central.storage-download.googleapis.com/repos/central/data/"
            // 添加备用地址 
            artifactUrls "https://maven.aliyun.com/repository/public/"
//         artifactUrls "http://maven.aliyun.com/nexus/content/groups/public/"
        }
        // 添加中央仓库
        mavenCentral()
        mavenLocal()
    }

 

标签:google,central,storage,googleapis,maven,download,com
来源: https://www.cnblogs.com/bluestorm/p/10348207.html