controls-kt/dataforge-magix-client/build.gradle.kts

33 lines
713 B
Plaintext
Raw Normal View History

2020-07-19 20:37:44 +03:00
plugins {
2020-09-08 10:13:14 +03:00
id("ru.mipt.npm.mpp")
id("ru.mipt.npm.publish")
2020-07-19 20:37:44 +03:00
}
2020-09-21 21:34:40 +03:00
val ktorVersion: String by rootProject.extra
2020-07-19 20:37:44 +03:00
2020-10-21 23:16:15 +03:00
repositories{
maven("https://maven.pkg.github.com/altavir/ktor-client-sse")
}
2020-07-19 20:37:44 +03:00
kotlin {
sourceSets {
commonMain {
2020-07-19 20:37:44 +03:00
dependencies {
implementation(project(":dataforge-device-core"))
2020-10-11 22:37:39 +03:00
implementation(project(":dataforge-device-tcp"))
2020-07-26 22:01:33 +03:00
implementation("io.ktor:ktor-client-core:$ktorVersion")
2020-10-21 23:16:15 +03:00
implementation("ru.mipt.npm:ktor-client-sse:0.1.0")
2020-07-26 22:01:33 +03:00
}
}
jvmMain {
2020-07-26 22:01:33 +03:00
dependencies {
2020-10-21 23:16:15 +03:00
2020-07-19 20:37:44 +03:00
}
}
jsMain {
dependencies {
2020-09-21 21:34:40 +03:00
}
}
2020-07-19 20:37:44 +03:00
}
}