twigs/db/build.gradle.kts

20 lines
517 B
Text
Raw Normal View History

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"))
2021-12-18 14:18:52 +00:00
implementation("org.postgresql:postgresql:42.3.1")
2021-08-12 21:22:06 +00:00
api("com.zaxxer:HikariCP:5.0.0")
2021-12-18 14:14:17 +00:00
implementation("ch.qos.logback:logback-classic:1.2.8")
2021-12-18 14:18:52 +00:00
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
2021-08-12 21:22:06 +00:00
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}