blob: 240157d5ceed2ed07777ccf0124d51062863b242 [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 = "javaNestedClass"
include(":workload")
include(":test-processor")