core/services/posts/client/build.gradle

23 lines
699 B
Groovy
Raw Normal View History

2022-01-08 12:37:53 +00:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library"
}
apply from: "$mppProjectWithSerializationPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":postssystem.features.common.client")
2022-01-25 09:21:01 +00:00
api project(":postssystem.services.posts.common")
2022-01-08 12:37:53 +00:00
api project(":postssystem.features.posts.client")
api project(":postssystem.features.auth.client")
api project(":postssystem.features.content.client")
2022-03-11 16:26:06 +00:00
api project(":postssystem.publicators.simple.client")
2022-01-08 12:37:53 +00:00
}
}
}
}