Added jaococ plugin

This commit is contained in:
Seraina 2022-03-25 17:22:35 +01:00
parent 5368679933
commit a6ca3da263

View File

@ -2,6 +2,7 @@ plugins {
id 'java-library' id 'java-library'
id 'application' id 'application'
id 'org.openjfx.javafxplugin' version '0.0.10' id 'org.openjfx.javafxplugin' version '0.0.10'
id 'jacoco'
} }
javafx { javafx {
@ -39,14 +40,14 @@ dependencies {
/* /*
This is another example - it imports the javafx-controls dependency This is another example - it imports the javafx-controls dependency
*/ */
implementation 'org.openjfx:javafx-controls:11.0.2' implementation 'org.openjfx:javafx-controls:17.0.2'
// JUNIT // JUNIT
/* /*
The following dependency is required to perform JUnit tests, as for example HelloWorldTest. The following dependency is required to perform JUnit tests, as for example HelloWorldTest.
Since it is a `testCompile` dependency, it will not be part of the final product, only during testing. Since it is a `testCompile` dependency, it will not be part of the final product, only during testing.
*/ */
testImplementation("org.junit.jupiter:junit-jupiter:5.+") testImplementation('org.junit.jupiter:junit-jupiter:5.8.2')
} }
test { test {