tgbotapi/tgbotapi.behaviour_builder/build.gradle

22 lines
482 B
Groovy
Raw Normal View History

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-03-22 10:26:18 +00:00
project.description = "Behaviour Builder DSL"
2021-10-18 09:20:25 +00:00
apply from: "$mppProjectWithSerializationPresetPath"
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(path: ':tgbotapi.core')
api project(path: ':tgbotapi.utils')
2021-10-18 09:20:25 +00:00
}
}
}
}