27 lines
497 B
Plaintext
27 lines
497 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.mpp")
|
|
id("ru.mipt.npm.publish")
|
|
}
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation(project(":dataforge-device-core"))
|
|
implementation("io.ktor:ktor-client-core:$ktorVersion")
|
|
}
|
|
}
|
|
jvmMain {
|
|
dependencies {
|
|
|
|
}
|
|
}
|
|
jsMain {
|
|
dependencies {
|
|
|
|
}
|
|
}
|
|
}
|
|
} |