summaryrefslogtreecommitdiff
path: root/sw-client/build.gradle.kts
blob: 06a8729e1a04e2d90a1c689ea0fd5fe631b0fa5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
plugins {
    kotlin("multiplatform")
}

kotlin {
    jvm()
    js {
        browser() // necessary for local dependency from JS UI module
    }
    sourceSets {
        commonMain {
            dependencies {
                api(projects.swCommonModel)
                api(libs.krossbow.stomp.kxserialization.json)
                api(libs.krossbow.websocket.builtin)
                implementation(libs.kotlinx.coroutines.core)
            }
        }
    }
}
bgstack15