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-12-02 12:35:16 +03:00
|
|
|
kscience{
|
|
|
|
useSerialization {
|
|
|
|
json()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-19 20:37:44 +03:00
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
2020-07-29 22:35:21 +03:00
|
|
|
commonMain {
|
2020-07-19 20:37:44 +03:00
|
|
|
dependencies {
|
2020-11-05 11:29:40 +03:00
|
|
|
implementation(project(":magix:magix-service"))
|
2020-07-19 20:37:44 +03:00
|
|
|
implementation(project(":dataforge-device-core"))
|
2020-07-29 22:35:21 +03:00
|
|
|
}
|
|
|
|
}
|
2020-07-19 20:37:44 +03:00
|
|
|
}
|
|
|
|
}
|