<lambda>null1pluginManagement { 2 val kotlinVersion: String by settings 3 val kspVersion: String by settings 4 val testRepo: String by settings 5 plugins { 6 id("com.google.devtools.ksp") version kspVersion apply false 7 kotlin("multiplatform") version kotlinVersion apply false 8 } 9 repositories { 10 maven(testRepo) 11 gradlePluginPortal() 12 maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/") 13 } 14 } 15 16 rootProject.name = "playground" 17 18 include(":annotations") 19 include(":workload") 20 include(":workload-jvm") 21 include(":workload-js") 22 include(":workload-linuxX64") 23 include(":workload-androidNative") 24 include(":test-processor") 25