core/features/auth/server/build.gradle

18 lines
387 B
Groovy
Raw Normal View History

2020-04-10 07:12:55 +00:00
plugins {
2020-11-25 12:40:45 +00:00
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
2020-04-10 07:12:55 +00:00
}
2021-11-24 07:52:27 +00:00
apply from: "$mppJavaProjectPresetPath"
2020-07-27 06:35:59 +00:00
kotlin {
sourceSets {
commonMain {
dependencies {
2021-11-24 07:52:27 +00:00
api project(":postssystem.features.auth.common")
api project(":postssystem.features.common.server")
2020-07-27 06:35:59 +00:00
}
}
}
}