SimpleNotes/buildSrc/src/main/kotlin/be/simplenotes/junit-convention.gradle.kts

15 lines
247 B
Plaintext

package be.simplenotes
plugins {
java apply false
}
tasks.withType<Test> {
useJUnitPlatform()
}
sourceSets {
val test by getting
test.resources.srcDir("${rootProject.projectDir}/simplenotes-test-resources/src/test/resources")
}