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

gradle配置国内镜像

时间:2018-02-03 13:20:06      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:repos   国内   maven2   cts   tps   oid   ica   maven   def   

使用阿里云国内镜像

对单个项目生效,在项目中的build.gradle修改内容

buildscript {
    repositories {
        maven { url http://maven.aliyun.com/nexus/content/groups/public/ }
                maven{ url http://maven.aliyun.com/nexus/content/repositories/jcenter}
    }
    dependencies {
        classpath com.android.tools.build:gradle:2.2.3

        // 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/ }
        maven{ url http://maven.aliyun.com/nexus/content/repositories/jcenter}
    }
}

对所有项目生效,在USER_HOME/.gradle/下创建init.gradle文件

allprojects{
    repositories {
        def ALIYUN_REPOSITORY_URL = http://maven.aliyun.com/nexus/content/groups/public
        def ALIYUN_JCENTER_URL = http://maven.aliyun.com/nexus/content/repositories/jcenter
        all { ArtifactRepository repo ->
            if(repo instanceof MavenArtifactRepository){
                def url = repo.url.toString()
                if (url.startsWith(https://repo1.maven.org/maven2)) {
                    project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_REPOSITORY_URL."
                    remove repo
                }
                if (url.startsWith(https://jcenter.bintray.com/)) {
                    project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_JCENTER_URL."
                    remove repo
                }
            }
        }
        maven {
                url ALIYUN_REPOSITORY_URL
            url ALIYUN_JCENTER_URL
        }
    }
}

 

gradle配置国内镜像

标签:repos   国内   maven2   cts   tps   oid   ica   maven   def   

原文地址:https://www.cnblogs.com/a8457013/p/8408196.html

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