xref: /aosp_15_r20/external/ksp/integration-tests/src/test/resources/init-plus-provider/settings.gradle.kts (revision af87fb4bb8e3042070d2a054e912924f599b22b7)

<lambda>null1 pluginManagement {
2     val kotlinVersion: String by settings
3     val kspVersion: String by settings
4     val testRepo: String by settings
5 
6     plugins {
7         id("com.google.devtools.ksp") version kspVersion
8         kotlin("jvm") version kotlinVersion
9     }
10 
11     repositories {
12         maven(testRepo)
13         gradlePluginPortal()
14         maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/")
15     }
16 }
17 
18 rootProject.name = "init-plus-provider"
19 
20 include(":workload")
21 include(":init-processor")
22 include(":provider-processor")
23