安装和配置gradle环境
- 下载grade
gradle下载地址
选择自己安装得版本解压
-
解压
-
配置环境变量
环境变量配置 GRADLE_HOME 解压得目录路径(D:\apache\gradle-5.2)
path后添加配置路径 %GRADLE_HOME%/bin -
测试gradle是否安装成功
进入 cmd 命令窗口 输入 gradle -v
如下图则安装成功 -
修改gradle maven 源到阿里云
进入C:\Users{用户名}.gradle
创建 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
> }
> } }