2022-01-08 12:37:53 +00:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "$mppJavaProjectPresetPath"
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api project(":postssystem.services.posts.common")
|
|
|
|
api project(":postssystem.features.common.server")
|
|
|
|
api project(":postssystem.features.content.server")
|
|
|
|
api project(":postssystem.features.posts.server")
|
|
|
|
api project(":postssystem.features.users.server")
|
2022-03-02 08:36:17 +00:00
|
|
|
api libs.microutils.common
|
|
|
|
api libs.kotlin.serialization.properties
|
2022-01-08 12:37:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|