mirror of
https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git
synced 2024-10-31 21:43:51 +00:00
18 lines
319 B
Groovy
18 lines
319 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.core:$tgbotapi_version"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|