MicroUtils/repos/ktor/client/build.gradle

20 lines
518 B
Groovy
Raw Normal View History

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
}
2023-10-20 15:53:27 +00:00
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64ProjectPresetPath"
2020-09-22 01:47:01 +00:00
kotlin {
sourceSets {
commonMain {
dependencies {
api internalProject("micro_utils.repos.ktor.common")
2020-09-22 02:20:22 +00:00
api internalProject("micro_utils.pagination.ktor.common")
api internalProject("micro_utils.ktor.client")
2020-09-22 01:47:01 +00:00
}
}
}
}