aboutsummaryrefslogtreecommitdiff
path: root/examples/multiplatform/settings.gradle.kts
blob: c9b9736705016dc286f953bf2b07513f1e96f791 (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 apply false
        kotlin("multiplatform") version kotlinVersion apply false
    }
    repositories {
        mavenCentral()
        gradlePluginPortal()
    }
}

rootProject.name = "multiplatform"

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