JetPackLearn/settings.gradle
2022-09-08 20:37:34 +08:00

21 lines
580 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
// aliyun center 包含 mavenCentral 和 jcenter
maven { url "https://maven.aliyun.com/repository/public" }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// aliyun center 包含 mavenCentral 和 jcenter
maven { url "https://maven.aliyun.com/repository/public" }
}
}
rootProject.name = "JectPackLearn"
include ':app'