22 lines
429 B
Groovy
Raw Permalink Normal View History

2020-09-15 18:57:41 +06:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
}
apply from: "$mppJavaProjectPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api internalProject("micro_utils.pagination.common")
}
}
2020-09-27 20:25:42 +06:00
jvmMain {
dependencies {
2022-03-10 17:04:05 +06:00
api libs.jb.exposed
2020-09-27 20:25:42 +06:00
}
}
2020-09-15 18:57:41 +06:00
}
}