27 lines
724 B
Groovy
27 lines
724 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|
|
}
|
|
}
|