Testing JavaFX stuff

This commit is contained in:
2020-07-04 16:38:28 +02:00
parent 49425da0dc
commit 2252c38131
6 changed files with 48 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
group 'de.siphalor'
@@ -19,6 +20,11 @@ dependencies {
testImplementation('org.junit.jupiter:junit-jupiter:5.6.2')
}
javafx {
version '14'
modules = [ "javafx.controls", "javafx.graphics", "javafx.fxml" ]
}
test {
useJUnitPlatform()
testLogging {
@@ -45,3 +51,4 @@ jar {
)
}
}