2021-07-29 16:40:22 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
`java-library`
|
|
|
|
}
|
|
|
|
|
2021-08-06 01:35:42 +00:00
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
|
2021-07-29 16:40:22 +00:00
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("stdlib"))
|
|
|
|
implementation(project(":core"))
|
2021-08-06 01:35:42 +00:00
|
|
|
api("io.ktor:ktor-auth:$ktorVersion")
|
2021-07-29 16:40:22 +00:00
|
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
|
|
|
|
implementation("org.postgresql:postgresql:42.2.23")
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
|
|
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName<Test>("test") {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|