core/business_cases/post_creating/common/build.gradle

21 lines
474 B
Groovy
Raw Normal View History

2020-09-09 18:04:25 +00:00
plugins {
2020-11-25 12:40:45 +00:00
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library"
2020-09-09 18:04:25 +00:00
}
2020-11-25 12:40:45 +00:00
apply from: "$mppProjectWithSerializationPresetPath"
2020-09-09 18:04:25 +00:00
kotlin {
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
2020-11-25 07:53:15 +00:00
api project(":postssystem.core.ktor.common")
api project(":postssystem.publishing.ktor.common")
2020-09-09 18:04:25 +00:00
}
}
}
}