2020-07-30 09:28:11 +00:00
|
|
|
plugins {
|
2020-11-25 12:40:45 +00:00
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
2020-07-30 09:28:11 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 12:40:45 +00:00
|
|
|
apply from: "$mppJavaProjectPresetPath"
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
|
|
|
api "dev.inmo:micro_utils.repos.exposed:$microutils_version"
|
|
|
|
|
|
|
|
api project(":postssystem.publishing.api")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
|
|
|
implementation "org.xerial:sqlite-jdbc:$test_sqlite_version"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-test"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-test-junit"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-30 09:28:11 +00:00
|
|
|
}
|