core/publishing/ktor/client/build.gradle

22 lines
489 B
Groovy
Raw Normal View History

2020-08-15 06:37:52 +00:00
plugins {
2020-11-25 12:40:45 +00:00
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library"
2020-08-15 06:37:52 +00:00
}
2020-11-25 12:40:45 +00:00
apply from: "$mppProjectWithSerializationPresetPath"
2020-08-15 06:37:52 +00:00
kotlin {
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
2020-11-25 07:53:15 +00:00
api "dev.inmo:micro_utils.ktor.client:$microutils_version"
api project(":postssystem.publishing.ktor.common")
2020-08-15 06:37:52 +00:00
}
}
}
}