mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-01 14:03:50 +00:00
28 lines
486 B
Groovy
28 lines
486 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "com.android.library"
|
|
id "com.google.devtools.ksp"
|
|
}
|
|
|
|
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
|
|
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api project(":micro_utils.koin")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
add("kspCommonMainMetadata", project(":micro_utils.koin.generator"))
|
|
}
|
|
|
|
ksp {
|
|
}
|