mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-10-31 21:43:48 +00:00
22 lines
496 B
Groovy
22 lines
496 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "org.jetbrains.dokka"
|
|
}
|
|
|
|
project.description = "API extensions with \"Telegram Bot API\"-like extensions for TelegramBot and RequestsExecutor"
|
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
|
apply from: "$publishGradlePath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api project(":tgbotapi.core")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|