25 lines
680 B
Groovy
25 lines
680 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
apply from: "$mppJavaProjectPresetPath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api project(":postssystem.business_cases.post_creating.common")
|
|
api project(":postssystem.core.ktor.server")
|
|
}
|
|
}
|
|
jvmTest {
|
|
dependencies {
|
|
implementation "org.xerial:sqlite-jdbc:$test_sqlite_version"
|
|
implementation "org.jetbrains.kotlin:kotlin-test"
|
|
implementation "org.jetbrains.kotlin:kotlin-test-junit"
|
|
}
|
|
}
|
|
}
|
|
}
|