aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/src/test/resources/kmp/settings.gradle.kts
blob: 651619e4fc34ca6cc46fd298a815d95d4c7f1672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pluginManagement {
    val kotlinVersion: String by settings
    val kspVersion: String by settings
    val testRepo: String by settings
    plugins {
        id("com.google.devtools.ksp") version kspVersion apply false
        kotlin("multiplatform") version kotlinVersion apply false
    }
    repositories {
        maven(testRepo)
        gradlePluginPortal()
        maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/")
    }
}

rootProject.name = "playground"

include(":annotations")
include(":workload")
include(":workload-jvm")
include(":workload-js")
include(":workload-linuxX64")
include(":workload-androidNative")
include(":test-processor")