core/business_cases/post_creating/common/build.gradle

21 lines
474 B
Groovy

plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library"
}
apply from: "$mppProjectWithSerializationPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
api project(":postssystem.core.ktor.common")
api project(":postssystem.publishing.ktor.common")
}
}
}
}