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

27 lines
497 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
kotlin {
sourceSets {
commonMain {
2020-07-19 20:37:44 +03:00
dependencies {
implementation(project(":dataforge-device-core"))
2020-07-26 22:01:33 +03:00
implementation("io.ktor:ktor-client-core:$ktorVersion")
}
}
jvmMain {
2020-07-26 22:01:33 +03:00
dependencies {
2020-09-21 21:34:40 +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
}
}