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 = "API extensions with \"Telegram Bot API\"-like extensions for TelegramBot and RequestsExecutor"
|
2021-10-18 09:20:25 +00:00
|
|
|
|
2024-08-29 18:51:03 +00:00
|
|
|
apply from: "$mppProjectWithSerialization"
|
|
|
|
apply from: "$mpp_publish"
|
2021-10-18 09:20:25 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api project(":tgbotapi.core")
|
|
|
|
}
|
|
|
|
}
|
2024-01-09 11:52:13 +00:00
|
|
|
configureEach {
|
|
|
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
|
|
|
}
|
2021-10-18 09:20:25 +00:00
|
|
|
}
|
2024-07-12 18:52:39 +00:00
|
|
|
explicitApi()
|
2021-10-18 09:20:25 +00:00
|
|
|
}
|