2021-11-24 07:52:27 +00:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "$mppJavaProjectPresetPath"
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api project(":postssystem.features.users.common")
|
|
|
|
api project(":postssystem.features.common.server")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
2022-05-07 14:48:17 +00:00
|
|
|
api libs.ktor.server.auth
|
2022-04-01 16:31:59 +00:00
|
|
|
api libs.ktor.server.sessions
|
2021-11-24 07:52:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|