tgbotapi/tgbotapi/build.gradle

24 lines
633 B
Groovy
Raw Normal View History

2020-04-08 05:05:48 +00:00
plugins {
2020-08-18 06:50:11 +00:00
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
2020-04-08 05:05:48 +00:00
}
2022-03-22 10:26:18 +00:00
project.description = "Full collection of all built-in tgbotapi tools"
2020-04-08 05:05:48 +00:00
apply from: "$mppProjectWithSerializationPresetPath"
apply from: "$publishGradlePath"
2020-04-08 05:05:48 +00:00
kotlin {
sourceSets {
commonMain {
dependencies {
2020-11-10 19:32:25 +00:00
api project(":tgbotapi.core")
2021-10-18 09:20:25 +00:00
api project(":tgbotapi.api")
api project(":tgbotapi.utils")
api project(":tgbotapi.behaviour_builder")
api project(":tgbotapi.behaviour_builder.fsm")
2020-04-08 05:05:48 +00:00
}
}
}
}