core/features/users/server/build.gradle

24 lines
576 B
Groovy
Raw Normal View History

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