24 lines
576 B
Groovy
24 lines
576 B
Groovy
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 {
|
|
api "io.ktor:ktor-auth:$ktor_version"
|
|
api "io.ktor:ktor-server-sessions:$ktor_version"
|
|
}
|
|
}
|
|
}
|
|
}
|