2021-11-07 16:50:28 +08:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
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()
|
|
|
|
maven {
|
|
|
|
url = uri("https://jitpack.io" )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
maven("https://plugins.gradle.org/m2/")
|
2021-11-07 16:50:28 +08:00
|
|
|
}
|
|
|
|
}
|
2022-10-09 10:51:27 +08:00
|
|
|
|
2021-12-14 11:34:20 +08:00
|
|
|
rootProject.name = "gkd"
|
2023-04-28 18:21:28 +08:00
|
|
|
|
2021-11-19 14:08:52 +08:00
|
|
|
include(":app")
|
2022-12-09 22:39:24 +08:00
|
|
|
include(":selector")
|
2022-10-09 10:51:27 +08:00
|
|
|
include(":room_processor")
|
2023-04-28 18:21:28 +08:00
|
|
|
include(":router")
|
|
|
|
|