mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-04 15:33:48 +00:00
17 lines
326 B
Groovy
17 lines
326 B
Groovy
|
plugins {
|
||
|
id "org.jetbrains.kotlin.multiplatform"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization"
|
||
|
}
|
||
|
|
||
|
apply from: "$mppJavaProjectPresetPath"
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
api project(":${rootProject.name}.module_name.common")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|