summaryrefslogtreecommitdiff
path: root/sw-client/build.gradle.kts
blob: 3ca5c93e06a78b204b79f6f76e43ff827ad09d60 (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 {
        val commonMain by getting {
            dependencies {
                api(projects.swCommonModel)
                api(libs.krossbow.stomp.kxserialization.json)
                api(libs.krossbow.websocket.builtin)
                implementation(libs.kotlinx.coroutines.core)
            }
        }
    }
}
bgstack15