core/features/content/text/server/build.gradle

19 lines
463 B
Groovy
Raw Normal View History

2021-11-24 14:32:21 +00:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
}
apply from: "$mppJavaProjectPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":postssystem.features.content.text.common")
api project(":postssystem.features.common.server")
2022-01-07 17:38:55 +00:00
api project(":postssystem.features.content.server")
2021-11-24 14:32:21 +00:00
}
}
}
}