gradle配置国内镜像

来源:互联网 发布:什么软件可以打电话 编辑:程序博客网 时间:2024/06/05 21:06

使用阿里云国内镜像

对单个项目生效,在项目中的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'}    }}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

对所有项目生效,在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}</span> replaced by <span class="hljs-variable">$ALIYUN_REPOSITORY_URL."                    remove repo                }                if (url.startsWith('https://jcenter.bintray.com/')) {                    project.logger.lifecycle "Repository ${repo.url}</span> replaced by <span class="hljs-variable">$ALIYUN_JCENTER_URL."                    remove repo                }            }        }        maven {                url ALIYUN_REPOSITORY_URL            url ALIYUN_JCENTER_URL        }    }}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

转自:http://blog.csdn.net/lj402159806/article/details/78422953

原创粉丝点击