blob: f2ecc8ea81a14d940f58821c2e6aac4edb2afa50 [file]
pluginManagement {
val kotlinVersion: String by settings
val kspVersion: 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://redirector.kotlinlang.org/maven/bootstrap/")
}
}
rootProject.name = "init-plus-provider"
include(":workload")
include(":provider-processor")