2020-07-19 20:37:44 +03:00
|
|
|
plugins {
|
|
|
|
id("scientifik.mpp")
|
|
|
|
id("scientifik.publish")
|
|
|
|
}
|
|
|
|
|
|
|
|
val ktorVersion: String by extra("1.3.2")
|
|
|
|
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain{
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":dataforge-device-core"))
|
2020-07-26 22:01:33 +03:00
|
|
|
implementation("io.ktor:ktor-client-core:$ktorVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmMain{
|
|
|
|
dependencies {
|
2020-07-19 20:37:44 +03:00
|
|
|
implementation("io.ktor:ktor-client-cio:$ktorVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|