mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-22 16:23:48 +00:00
24 lines
633 B
Groovy
24 lines
633 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
project.description = "Full collection of all built-in tgbotapi tools"
|
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
|
apply from: "$publishGradlePath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api project(":tgbotapi.core")
|
|
api project(":tgbotapi.api")
|
|
api project(":tgbotapi.utils")
|
|
api project(":tgbotapi.behaviour_builder")
|
|
api project(":tgbotapi.behaviour_builder.fsm")
|
|
}
|
|
}
|
|
}
|
|
}
|