Banksia/settings.gradle.kts

44 lines
1 KiB
Text
Raw Normal View History

2025-04-13 00:51:32 +10:00
rootProject.name = "Banksia"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
2026-03-25 21:14:28 +11:00
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
2025-04-13 00:51:32 +10:00
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
}
}
2026-03-25 21:10:54 +11:00
include(":androidApp")
2025-04-13 00:51:32 +10:00
include(":server")
include(":server:gtfs")
include(":server:gtfs_rt")
2025-04-14 21:53:07 +10:00
include(":shared")
include(":shared:data")
include(":shared:room")
include(":ui")
include(":ui:maps")
include(":ui:shared")