2026-06-30 15:12:58 -06:00
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rootProject.name = "meatbag"
|
|
|
|
|
include(":common")
|
|
|
|
|
include(":backend")
|
|
|
|
|
include(":client")
|
2026-07-04 13:46:24 -06:00
|
|
|
|
|
|
|
|
include(":tailscale-wearos-android")
|
|
|
|
|
project(":tailscale-wearos-android").projectDir = file("../tailscale-wearos/android")
|
|
|
|
|
|