Files
SimpleNotes/buildSrc/src/main/kotlin/be/simplenotes/junit-convention.gradle.kts
T
2020-11-29 21:15:31 +01:00

14 lines
170 B
Kotlin

package be.simplenotes
plugins {
java apply false
}
tasks.withType<Test> {
useJUnitPlatform()
}
dependencies {
testRuntimeOnly(project(":junit-config"))
}