2020-09-22 12:20:22 +10:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
|
|
}
|
|
|
|
|
2024-08-27 18:57:59 +06:00
|
|
|
apply from: "$mppJavaProject"
|
2020-09-22 12:20:22 +10:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api internalProject("micro_utils.ktor.common")
|
2020-09-24 12:27:16 +10:00
|
|
|
api internalProject("micro_utils.coroutines")
|
2020-09-22 12:20:22 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
2022-03-10 17:04:05 +06:00
|
|
|
api libs.ktor.server
|
|
|
|
api libs.ktor.server.cio
|
|
|
|
api libs.ktor.server.host.common
|
2022-04-27 14:39:21 +06:00
|
|
|
api libs.ktor.server.websockets
|
|
|
|
api libs.ktor.server.statusPages
|
2020-09-22 12:20:22 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|