mirror of
https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git
synced 2024-10-31 21:43:51 +00:00
17 lines
313 B
Groovy
17 lines
313 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
apply from: "$mppJavaWithJsProjectPath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api "dev.inmo:tgbotapi:$tgbotapi_version"
|
|
}
|
|
}
|
|
}
|
|
}
|