MicroUtils/repos/exposed/build.gradle

18 lines
389 B
Groovy
Raw Normal View History

2020-09-22 01:47:01 +00:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
}
apply from: "$mppJavaProjectPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api internalProject("micro_utils.repos.common")
2020-09-27 14:25:42 +00:00
api internalProject("micro_utils.pagination.exposed")
}
}
2020-09-22 01:47:01 +00:00
}
}