gkd/settings.gradle.kts

25 lines
460 B
Plaintext
Raw Normal View History

2023-04-30 17:50:55 +08:00
rootProject.name = "gkd"
include(":app")
2023-07-10 11:25:17 +08:00
include(":selector")
include(":hidden_api")
2024-03-26 17:29:00 +08:00
include(":wasm_matches")
2023-05-18 15:34:49 +08:00
pluginManagement {
repositories {
2023-08-31 22:22:03 +08:00
mavenLocal()
mavenCentral()
google()
maven("https://jitpack.io")
2023-05-18 15:34:49 +08:00
maven("https://plugins.gradle.org/m2/")
}
}
2023-04-30 17:50:55 +08:00
2021-11-07 16:50:28 +08:00
dependencyResolutionManagement {
repositories {
2022-10-09 10:51:27 +08:00
mavenLocal()
2021-11-07 16:50:28 +08:00
mavenCentral()
2022-10-09 10:51:27 +08:00
google()
2023-04-30 17:50:55 +08:00
maven("https://jitpack.io")
}
2022-10-09 10:51:27 +08:00
}