mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-08 17:33:47 +00:00
22 lines
466 B
Groovy
22 lines
466 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "org.jetbrains.dokka"
|
|
}
|
|
|
|
project.description = "Behaviour Builder DSL"
|
|
|
|
apply from: "$mppProjectWithSerialization"
|
|
apply from: "$mpp_publish"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api project(path: ':tgbotapi.core')
|
|
api project(path: ':tgbotapi.utils')
|
|
}
|
|
}
|
|
}
|
|
}
|