15 lines
No EOL
286 B
Text
15 lines
No EOL
286 B
Text
plugins {
|
|
`java-library`
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
api(libs.ktor.server.auth)
|
|
testImplementation(libs.junit.jupiter.api)
|
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
|
}
|
|
|
|
tasks.getByName<Test>("test") {
|
|
useJUnitPlatform()
|
|
} |