mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-14 12:23:49 +00:00
24 lines
523 B
Groovy
24 lines
523 B
Groovy
|
plugins {
|
||
|
id "org.jetbrains.kotlin.multiplatform"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization"
|
||
|
}
|
||
|
|
||
|
apply from: "$mppJavaProjectPresetPath"
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
api internalProject("micro_utils.pagination.ktor.common")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
jvmMain {
|
||
|
dependencies {
|
||
|
api "io.ktor:ktor-server:$ktor_version"
|
||
|
api "io.ktor:ktor-server-host-common:$ktor_version"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|