gradle配置国内镜像
Posted yadongliang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gradle配置国内镜像相关的知识,希望对你有一定的参考价值。
转自:https://blog.csdn.net/lj402159806/article/details/78422953
使用阿里云国内镜像
对单个项目生效,在项目中的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配置国内镜像的主要内容,如果未能解决你的问题,请参考以下文章