码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-02-12 16:18:45      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:project   content   oid   clean   pen   root   修改   连接   mod   

由于国内的某些不可明确的原因 国内连接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镜像仓库

标签:project   content   oid   clean   pen   root   修改   连接   mod   

原文地址:https://www.cnblogs.com/wushenjiang/p/12299342.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!