yayacal/settings.gradle.kts
xfy 36debfd4a5 Add Aliyun Maven mirrors for faster dependency resolution
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-15 15:49:51 +08:00

38 lines
1.1 KiB
Plaintext

rootProject.name = "YaYa"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
maven("https://maven.aliyun.com/repository/gradle-plugin")
maven("https://maven.aliyun.com/repository/google")
maven("https://maven.aliyun.com/repository/central")
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
maven("https://maven.aliyun.com/repository/google")
maven("https://maven.aliyun.com/repository/central")
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
mavenCentral()
}
}
include(":shared")
include(":androidApp")