2021-10-18 09:20:25 +00:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
2023-03-04 15:18:50 +00:00
|
|
|
id "org.jetbrains.dokka"
|
2021-10-18 09:20:25 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 07:47:21 +00:00
|
|
|
project.description = "Behaviour Builder DSL"
|
2021-10-18 09:20:25 +00:00
|
|
|
|
2022-06-29 07:47:21 +00:00
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
2022-06-29 08:23:45 +00:00
|
|
|
apply from: "$publishGradlePath"
|
2021-10-18 09:20:25 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2023-11-25 11:52:42 +00:00
|
|
|
api project(":tgbotapi.core")
|
|
|
|
api project(":tgbotapi.utils")
|
2021-10-18 09:20:25 +00:00
|
|
|
api project(":tgbotapi.behaviour_builder")
|
2022-06-29 08:23:45 +00:00
|
|
|
api libs.microutils.fsm.common
|
2021-10-18 09:20:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|