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

19 lines
464 B
Groovy
Raw Normal View History

2021-11-27 17:02:14 +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.binary.common")
2022-01-07 17:38:55 +00:00
api project(":postssystem.features.content.server")
api project(":postssystem.features.files.server")
2021-11-27 17:02:14 +00:00
}
}
}
}