Files
SimpleNotes/buildSrc/src/main/kotlin/be/simplenotes/junit-convention.gradle.kts
T
2021-03-03 14:28:34 +01:00

16 lines
204 B
Kotlin

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