mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-01 05:53:50 +00:00
22 lines
419 B
Groovy
22 lines
419 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.pagination.common")
|
|
}
|
|
}
|
|
jvmMain {
|
|
dependencies {
|
|
api libs.jb.exposed
|
|
}
|
|
}
|
|
}
|
|
}
|