Gradle仓库国内镜像
2019-05-09 本文已影响0人
JackSRZ
buildscript {
repositories {
// jcenter()
// google()
maven { url'http://maven.aliyun.com/nexus/content/repositories/google' }
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:3.4.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
// jcenter()
// google()
maven { url'http://maven.aliyun.com/nexus/content/repositories/google' }
maven { url'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
}
}