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
|
|
|
|
2022-06-29 07:47:21 +00:00
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
2022-06-29 08:23:45 +00:00
|
|
|
apply from: "$publishGradlePath"
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|