blob: c241eb480556b8f9bea4f316f1c60ed38e98b4a1 [file] [log] [blame]
pluginManagement {
val kotlinVersion: String by settings
val kspVersion: String by settings
val testRepo: String by settings
plugins {
id("com.google.devtools.ksp") version kspVersion apply false
kotlin("multiplatform") version kotlinVersion apply false
}
repositories {
maven(testRepo)
gradlePluginPortal()
maven("https://redirector.kotlinlang.org/maven/bootstrap/")
}
}
rootProject.name = "hmpp"
include(":workload")
include(":test-processor")