core/targets/telegram/publication/server/build.gradle

23 lines
578 B
Groovy
Raw Normal View History

2022-01-07 15:35:11 +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.common.server")
api project(":postssystem.features.publication.server")
api project(":postssystem.features.content.binary.server")
api project(":postssystem.features.content.text.server")
2022-03-02 08:36:17 +00:00
api libs.tgbotapi
2022-01-07 15:35:11 +00:00
}
}
}
}