init with pagination

This commit is contained in:
2020-09-15 18:57:41 +06:00
parent 97a83250f4
commit c6d0b0920e
22 changed files with 737 additions and 0 deletions

40
mppJavaProject Normal file
View File

@@ -0,0 +1,40 @@
project.version = "$version"
project.group = "$group"
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
}
kotlin {
jvm()
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
api internalProject("micro_utils.pagination.common")
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmMain {
dependencies {
api "org.jetbrains.exposed:exposed-core:$kotlin_exposed_version"
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
}
}