16 lines
337 B
Text
16 lines
337 B
Text
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
`java-library`
|
||
|
}
|
||
|
|
||
|
val ktorVersion: String by rootProject.extra
|
||
|
|
||
|
dependencies {
|
||
|
implementation(kotlin("stdlib"))
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
|
||
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
||
|
}
|
||
|
|
||
|
tasks.getByName<Test>("test") {
|
||
|
useJUnitPlatform()
|
||
|
}
|