make jnuit5 tests actually executable in gradle

This commit is contained in:
2018-08-17 19:34:42 +02:00
parent a8658480ce
commit 1994400f97

View File

@@ -48,6 +48,12 @@ subprojects {
// dependencies that all sub-projects have // dependencies that all sub-projects have
dependencies { dependencies {
testCompile 'org.junit.jupiter:junit-jupiter-api:5.2.0' testCompile 'org.junit.jupiter:junit-jupiter-api:5.2.0'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.2.0'
testRuntime 'org.junit.platform:junit-platform-launcher:1.2.0' // needed by eclipse
}
test {
useJUnitPlatform()
} }
} }