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-01-22 07:30:49 +00:00
|
|
|
api "dev.inmo:micro_utils.common:$microutils_version"
|
|
|
|
api "org.jetbrains.kotlinx:kotlinx-serialization-properties:$kotlin_serialisation_core_version"
|
2022-01-08 12:37:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|