Gradle使用国内的maven仓库
感谢阿里云!
找到gradle的配置文件路径,例如Windows中的路径为C:\Users\${你的用户名}\.gradle
新建一个文件名为init.gradle,用记事本或者类似的编辑器打开,输入以下内容:
1 allprojects{ 2 repositories { 3 def REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public/' 4 all { ArtifactRepository repo -> 5 if(repo instanceof MavenArtifactRepository){ 6 def url = repo.url.toString() 7 if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com/')) { 8 project.logger.lifecycle "Repository ${repo.url} replaced by $REPOSITORY_URL." 9 remove repo 10 } 11 } 12 } 13 maven { 14 url REPOSITORY_URL 15 } 16 } 17 }
再执行gradle build的时候,你能看到下载地址切换到阿里云了,终于不用漫长的等待了。
上善若水,水利万物而不争。