28 lines
616 B
Plaintext
28 lines
616 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.mpp")
|
|
}
|
|
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
kscience{
|
|
useCoroutines()
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":dataforge-device-core"))
|
|
api("io.ktor:ktor-network:$ktorVersion")
|
|
}
|
|
}
|
|
jvmTest{
|
|
dependencies{
|
|
implementation("io.ktor:ktor-server-cio:$ktorVersion")
|
|
implementation("io.ktor:ktor-client-cio:$ktorVersion")
|
|
implementation("ch.qos.logback:logback-classic:1.2.3")
|
|
}
|
|
}
|
|
}
|
|
} |