core/business_cases/post_creating/server/build.gradle

25 lines
680 B
Groovy
Raw Normal View History

2020-09-09 18:04:25 +00:00
plugins {
2020-11-25 12:40:45 +00:00
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
2020-09-09 18:04:25 +00:00
}
2020-11-25 12:40:45 +00:00
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"
}
}
}
2020-09-09 18:04:25 +00:00
}