2021-08-12 21:22:06 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
`java-library`
|
|
|
|
}
|
|
|
|
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("stdlib"))
|
|
|
|
api(project(":storage"))
|
2023-08-08 02:41:54 +00:00
|
|
|
runtimeOnly(libs.postgres)
|
|
|
|
runtimeOnly(libs.sqlite)
|
2022-06-03 02:28:44 +00:00
|
|
|
api(libs.hikari)
|
|
|
|
implementation(libs.logback)
|
|
|
|
testImplementation(libs.junit.jupiter.api)
|
|
|
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
2021-08-12 21:22:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName<Test>("test") {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|