core/core/exposed/build.gradle

27 lines
755 B
Groovy
Raw Normal View History

2020-04-10 07:12:55 +00:00
plugins {
2020-11-25 12:40:45 +00:00
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
2020-04-10 07:12:55 +00:00
}
2020-11-25 12:40:45 +00:00
apply from: "$mppJavaProjectPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api "dev.inmo:micro_utils.repos.exposed:$microutils_version"
api project(":postssystem.core.api")
}
}
jvmTest {
dependencies {
implementation "org.jetbrains.exposed:exposed-jdbc:$exposed_version"
implementation "org.xerial:sqlite-jdbc:$test_sqlite_version"
implementation "org.jetbrains.kotlin:kotlin-test"
implementation "org.jetbrains.kotlin:kotlin-test-junit"
}
}
}
}