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