MicroUtils/repos/inmemory/build.gradle

23 lines
562 B
Groovy
Raw Normal View History

plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
2020-11-10 09:43:15 +00:00
id "com.android.library"
}
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
kotlin {
sourceSets {
commonMain {
dependencies {
api internalProject("micro_utils.repos.common")
api internalProject("micro_utils.coroutines")
}
}
2024-08-09 13:22:32 +00:00
commonTest {
dependencies {
api project(":micro_utils.repos.common.tests")
}
}
}
}