blob: 405532e83e2e344901adc5e409c0719a736345a4 [file]
pluginManagement {
val kotlinVersion: String by settings
val kspVersion: String by settings
plugins {
id("com.google.devtools.ksp") version kspVersion apply false
kotlin("multiplatform") version kotlinVersion apply false
}
repositories {
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "multiplatform"
include(":processors")
include(":workload")