1.Gradle下载
- 打开官网下载界面:https://gradle.org/releases/
如果你使用的SpringBoot项目,建议使用6.8及以上的版本
2.下载后放到目录下
3.配置环境变量
- 配置gradle_home
- 配置Path
4.配置成功
5.配置国内源
新建一个init.gradle文件,配置内部源
allprojects{repositories {maven{ allowInsecureProtocol =trueurl= 'https://maven.aliyun.com/repository/public'}def REPOSITORY_URL = 'https://maven.aliyun.com/repository/public/'//做一些国外不稳定的地址连接的替换all {ArtifactRepository repo ->if (repo instanceof MavenArtifactRepository) {def url = repo.url.toString()if (url.startsWith('https://artifacts.elastic.co/maven')||url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://repo.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com/')||url.startsWith('https://repo.maven.apache.org/maven2')) {project.logger.lifecycle "Repository ${repo.url} replaced by $REPOSITORY_URL."remove repo}}}}
}