Skip to content

Instantly share code, notes, and snippets.

@glfruit
Created March 8, 2018 08:47
Show Gist options
  • Save glfruit/b3dc1a2178fbe5156cdd00d930d4f1d0 to your computer and use it in GitHub Desktop.
Save glfruit/b3dc1a2178fbe5156cdd00d930d4f1d0 to your computer and use it in GitHub Desktop.
Mirror setting for 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
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment