2020-09-22 01:47:01 +00:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
2020-11-10 09:43:15 +00:00
|
|
|
id "com.android.library"
|
2020-09-22 01:47:01 +00:00
|
|
|
}
|
|
|
|
|
2024-08-27 12:57:59 +00:00
|
|
|
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
|
2020-09-22 01:47:01 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api internalProject("micro_utils.repos.common")
|
|
|
|
}
|
|
|
|
}
|
2022-06-03 16:33:26 +00:00
|
|
|
jvmTest {
|
|
|
|
dependencies {
|
|
|
|
implementation internalProject("micro_utils.repos.common")
|
2024-08-09 15:58:09 +00:00
|
|
|
implementation internalProject("micro_utils.repos.common.tests")
|
2022-06-03 16:33:26 +00:00
|
|
|
implementation internalProject("micro_utils.repos.ktor.client")
|
|
|
|
implementation internalProject("micro_utils.repos.ktor.server")
|
|
|
|
implementation internalProject("micro_utils.repos.inmemory")
|
|
|
|
implementation libs.kt.coroutines.test
|
|
|
|
|
|
|
|
implementation libs.ktor.server.cio
|
|
|
|
implementation libs.ktor.client.cio
|
|
|
|
implementation libs.ktor.server.content.negotiation
|
|
|
|
implementation libs.ktor.serialization.kotlinx.json
|
|
|
|
implementation libs.ktor.client.content.negotiation
|
|
|
|
implementation libs.ktor.client.logging
|
|
|
|
implementation libs.ktor.client.websockets
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 01:47:01 +00:00
|
|
|
}
|
|
|
|
}
|