Skip to content
Snippets Groups Projects
Commit f2a09e9a authored by LABOUREL Arnaud's avatar LABOUREL Arnaud
Browse files

updated gradle config

parent 00b8797c
Branches variant
No related tags found
No related merge requests found
plugins { plugins {
id 'application' id 'application'
id "org.openjfx.javafxplugin" version "0.0.10" id "org.openjfx.javafxplugin" version "0.0.13"
} }
javafx { javafx {
version = "17" version = "19"
modules = [ 'javafx.controls', 'javafx.fxml' ] modules = [ 'javafx.controls', 'javafx.fxml' ]
} }
...@@ -13,13 +13,16 @@ javafx { ...@@ -13,13 +13,16 @@ javafx {
repositories { repositories {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12' testImplementation('org.junit.jupiter:junit-jupiter-api:5.9.0',
testImplementation 'org.hamcrest:hamcrest-library:1.3' 'org.assertj:assertj-core:3.23.1')
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
} }
mainClassName = "App" application {
mainClassName = "App"
}
test { test {
useJUnitPlatform() useJUnitPlatform()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment