core/publicators/template/server/build.gradle

18 lines
399 B
Groovy
Raw Normal View History

2022-03-11 15:09:50 +00:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
}
apply from: "$mppJavaProjectPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":postssystem.publicators.template.common")
2022-03-11 16:26:06 +00:00
api project(":postssystem.features.publication.server")
2022-03-11 15:09:50 +00:00
}
}
}
}