blob: d3721ee46557e5c3f4ac59ed50e3e628f6a480c1 [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 {
gradlePluginPortal()
mavenCentral()
}
}
rootProject.name = "multiplatform"
include(":processors")
include(":workload")