gradle下载速度慢,改用国内代理
- gradle 下载
gradle/wrapper/gradle-wrapper.properties
文件中修改distributionUrl
# 原始
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
# 修改为
distributionUrl=https\://downloads.gradle.org/distributions/gradle-8.0-bin.zip
- 依赖下载
settings.gradle
文件中修改repositories
pluginManagement {
repositories {
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' }
maven { url 'https://maven.aliyun.com/nexus/content/groups/public' }
maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'}
google()
mavenCentral()
}
}