core/features/template/server/build.gradle

18 lines
391 B
Groovy
Raw Normal View History

2020-04-10 13:12:55 +06:00
plugins {
2020-11-25 18:40:45 +06:00
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
2020-04-10 13:12:55 +06:00
}
2021-11-24 13:52:27 +06:00
apply from: "$mppJavaProjectPresetPath"
2020-07-27 12:35:59 +06:00
kotlin {
sourceSets {
commonMain {
dependencies {
2021-11-24 13:52:27 +06:00
api project(":postssystem.features.template.common")
api project(":postssystem.features.common.server")
2020-07-27 12:35:59 +06:00
}
}
}
}