eclipse中配置gradle使用阿里云中央仓库和配置本地仓库

1、首先打开eclipse的marketplace,搜索gradle,选择

eclipse中配置gradle使用阿里云中央仓库和配置本地仓库_第1张图片

点击install,然后重启eclipse即可。在https://gradle.org/页面点击install来到https://gradle.org/install/,往下拉到中间找到

eclipse中配置gradle使用阿里云中央仓库和配置本地仓库_第2张图片

点击Binary-only下载压缩包,解压到本机某个文件夹下,类似于JDK或MAVEN,将gradle整个文件夹地址加到系统的环境变量里(windows系统是Path变量).

2、在上述的gradle文件夹子目录init.d下面新建一个名为init.gradle的文件(本人路径为D:\Program Files\gradle-5.0\init.d),代码为:

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/')
||url.startsWith('https://repo.spring.io/plugins-release') ||url.startsWith('https://dl.bintray.com/kotlin/kotlin-eap-1.1')){
project.logger.lifecycle "Repository ${repo.url} replaced by $REPOSITORY_URL."
remove repo
}
}
}


maven {
url REPOSITORY_URL
}
}
}
这样以后在下载Jar包的时候会优先走阿里云仓库下载了。

3、eclipse的配置如下图

eclipse中配置gradle使用阿里云中央仓库和配置本地仓库_第3张图片

好了,打完收工

你可能感兴趣的:(经验,Gradle)