2021-07-29 16:40:22 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
`java-library`
|
|
|
|
}
|
|
|
|
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("stdlib"))
|
2021-08-12 21:22:06 +00:00
|
|
|
api("io.ktor:ktor-auth:$ktorVersion")
|
|
|
|
api("at.favre.lib:bcrypt:0.9.0")
|
2021-07-29 16:40:22 +00:00
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
|
|
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName<Test>("test") {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|