mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-01 05:53:50 +00:00
24 lines
521 B
Groovy
24 lines
521 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
apply from: "$mppJavaProject"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api internalProject("micro_utils.repos.ktor.common")
|
|
}
|
|
}
|
|
|
|
jvmMain {
|
|
dependencies {
|
|
api internalProject("micro_utils.pagination.ktor.server")
|
|
api internalProject("micro_utils.ktor.server")
|
|
}
|
|
}
|
|
}
|
|
}
|