blob: c4a1f4cd2041e17f33378a7d943ea28b5e90ac76 [file]
pluginManagement {
val kspVersion: String by settings
val kotlinVersion: 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://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/")
}
}
rootProject.name = "incremental-test"
include(":workload")
include(":validator")
include(":l1")
include(":l2")
include(":l3")
include(":l4")
include(":l5")