blob: 79202ef6128af931088a68150bbdfa1b932427f2 [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 = "cmd-options"
include(":workload")
include(":processors")