24 lines
567 B
Groovy
24 lines
567 B
Groovy
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")
|
|
api project(":postssystem.features.content.server")
|
|
api project(":postssystem.features.files.server")
|
|
}
|
|
}
|
|
jvmMain {
|
|
dependencies {
|
|
api libs.scrimage
|
|
}
|
|
}
|
|
}
|
|
}
|