gradle更换国内镜像,安装包解压后init.d文件夹下面创建init.gradle文件,内容如下
allprojects{ repositories { def REPOSITORY_URL = ‘http://maven.aliyun.com/nexus/content/groups/public/‘ all { ArtifactRepository repo -> if(repo instanceof MavenArtifactRepository){ def url = repo.url.toString() if (url.startsWith(‘https://repo1.maven.org/maven2‘) || url.startsWith(‘https://jcenter.bintray.com/‘)) { project.logger.lifecycle "Repository ${repo.url} replaced by $REPOSITORY_URL." remove repo } } } maven { url REPOSITORY_URL } } }
gradle本地仓库地址配置:
原文地址:https://www.cnblogs.com/kgtone/p/10988092.html
时间: 2024-10-08 17:54:19