2022-03-11 14:37:40 +00:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "$mppJavaProjectPresetPath"
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api project(":postssystem.targets.telegram.loader.common")
|
|
|
|
api project(":postssystem.targets.telegram.publication.server")
|
2022-03-13 15:58:10 +00:00
|
|
|
api project(":postssystem.targets.telegram.content.polls.server")
|
2022-03-11 14:37:40 +00:00
|
|
|
api project(":postssystem.features.common.server")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|