aboutsummaryrefslogtreecommitdiff
path: root/examples/playground/settings.gradle.kts
blob: 1fecf40af82fa7db87218e2205d04b34a1781927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pluginManagement {
    val kotlinVersion: String by settings
    val kspVersion: String by settings
    plugins {
        id("com.google.devtools.ksp") version kspVersion
        kotlin("jvm") version kotlinVersion
    }
    repositories {
        gradlePluginPortal()
        mavenCentral()
    }
}

rootProject.name = "playground"

include(":workload")
include(":test-processor")