20 lines
No EOL
514 B
Text
20 lines
No EOL
514 B
Text
plugins {
|
|
kotlin("jvm")
|
|
`java-library`
|
|
}
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
api(project(":storage"))
|
|
implementation("org.postgresql:postgresql:42.2.23")
|
|
api("com.zaxxer:HikariCP:5.0.0")
|
|
implementation("ch.qos.logback:logback-classic:+")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
|
}
|
|
|
|
tasks.getByName<Test>("test") {
|
|
useJUnitPlatform()
|
|
} |