gradle映象源配置
阿新 • • 發佈:2018-12-12
使用阿里雲國內映象
對單個專案生效,在專案中的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檔案
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' def GRADLE_LOCAL_RELEASE_URL = 'https://repo.gradle.org/gradle/libs-releases-local' def SPRING_RELEASE_URL = 'http://repo.spring.io/plugins-release/' 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 url SPRING_RELEASE_URL url GRADLE_LOCAL_RELEASE_URL } }
repositories { mavenCentral() maven { url "https://jitpack.io" } maven { url "http://maven.aliyun.com/nexus/content/groups/public/" } maven { url 'http://maven.oschina.net/content/groups/public/' } maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } maven { url "http://maven.springframework.org/release" } maven { url "http://maven.restlet.org" } maven { url "http://mirrors.ibiblio.org/maven2" } maven { url "http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/" } maven { url 'https://maven.fabric.io/public' } jcenter() google() }
apache snapshots
proxy
SNAPSHOT
https://maven.aliyun.com/repository/apache-snapshots
central
proxy
RELEASE
https://maven.aliyun.com/repository/central
google
proxy
RELEASE
https://maven.aliyun.com/repository/google
gradle-plugin
proxy
RELEASE
https://maven.aliyun.com/repository/gradle-plugin
jcenter
proxy
RELEASE
https://maven.aliyun.com/repository/jcenter
spring
proxy
RELEASE
https://maven.aliyun.com/repository/spring
spring-plugin
proxy
RELEASE
https://maven.aliyun.com/repository/spring-plugin
public
group
RELEASE
https://maven.aliyun.com/repository/public
releases
hosted
RELEASE
https://maven.aliyun.com/repository/releases
snapshots
hosted
SNAPSHOT
https://maven.aliyun.com/repository/snapshots
grails-core
proxy
RELEASE
https://maven.aliyun.com/repository/grails-core