Clean gradle scripts

This commit is contained in:
2020-10-28 00:42:51 +01:00
parent cb58a4fbe0
commit c3fc6a4e88
7 changed files with 80 additions and 78 deletions
@@ -0,0 +1,14 @@
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")
}