mirror of
https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git
synced 2024-11-01 05:53:52 +00:00
19 lines
405 B
Groovy
19 lines
405 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
apply from: "$mppJavaWithJsProjectPath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api "dev.inmo:micro_utils.repos.common:$micro_utils_version"
|
|
api project(":tgbotapi.libraries.cache.content.common")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|