<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 7 kotlin("jvm") version kotlinVersion 8 } 9 repositories { 10 maven(testRepo) 11 gradlePluginPortal() 12 maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/") 13 } 14 } 15 <lambda>null16buildCache { 17 val buildCacheDir: String by settings 18 local { 19 directory = File(buildCacheDir) 20 removeUnusedEntriesAfterDays = 30 21 } 22 } 23 24 rootProject.name = "playground" 25 26 include(":workload") 27 include(":test-processor") 28