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