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