tgbotapi/tgbotapi.behaviour_builder/build.gradle

20 lines
395 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"
}
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 {
api project(":tgbotapi.utils")
}
}
}
}