mirror of
https://github.com/InsanusMokrassar/KotlinPublicationScriptsBuilder.git
synced 2024-11-10 18:33:56 +00:00
21 lines
529 B
Groovy
21 lines
529 B
Groovy
|
plugins {
|
||
|
id "org.jetbrains.kotlin.multiplatform"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization"
|
||
|
id "com.android.library"
|
||
|
}
|
||
|
|
||
|
apply from: "$mppProjectWithSerializationPresetPath"
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version"
|
||
|
api "dev.inmo:micro_utils.coroutines:$micro_utils_version"
|
||
|
|
||
|
api "io.ktor:ktor-client-core:$ktor_version"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|