15 lines
247 B
Plaintext
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")
|
|
}
|