core/features/users/server/build.gradle

24 lines
538 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 libs.ktor.auth
api libs.ktor.server.sessions
}
}
}
}