blob: 4bdafb7d404b1700818e40a100de52d0ed58ea02 [file]
pluginManagement {
val kotlinVersion: String by settings
val kspVersion: String by settings
val testRepo: String by settings
plugins {
id("com.google.devtools.ksp") version kspVersion
kotlin("jvm") version kotlinVersion
}
repositories {
maven(testRepo)
gradlePluginPortal()
maven("https://redirector.kotlinlang.org/maven/bootstrap/")
}
}
buildCache {
val buildCacheDir: String by settings
local {
directory = File(buildCacheDir)
}
}
rootProject.name = "playground"
include(":workload")
include(":test-processor")