mirror of
https://github.com/InsanusMokrassar/KotlinPublicationScriptsBuilder.git
synced 2024-11-14 12:23:56 +00:00
18 lines
401 B
Groovy
18 lines
401 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
apply from: "$mppJsProjectPresetPath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation project(":kmppscriptbuilder.core")
|
|
implementation "dev.inmo:micro_utils.common:$micro_utils_version"
|
|
}
|
|
}
|
|
}
|
|
}
|