mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-01 05:53:50 +00:00
21 lines
470 B
Groovy
21 lines
470 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "com.android.library"
|
|
}
|
|
|
|
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api internalProject("micro_utils.common")
|
|
api libs.kt.serialization.cbor
|
|
api libs.uuid
|
|
api libs.ktor.io
|
|
}
|
|
}
|
|
}
|
|
}
|