xref: /aosp_15_r20/external/ksp/integration-tests/src/test/resources/buildcache/settings.gradle.kts (revision af87fb4bb8e3042070d2a054e912924f599b22b7)

<lambda>null1 pluginManagement {
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>null16 buildCache {
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