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

Mise à jour configuration gradle

parent a0119640
No related branches found
No related tags found
No related merge requests found
plugins { plugins {
id 'application' id 'application'
id "org.openjfx.javafxplugin" version "0.0.8" id "org.openjfx.javafxplugin" version "0.0.10"
} }
javafx { javafx {
version = "13" version = "17"
modules = [ 'javafx.controls', 'javafx.fxml' ] modules = [ 'javafx.controls', 'javafx.fxml' ]
} }
sourceCompatibility = "13"
targetCompatibility = "13"
repositories { repositories {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2' testImplementation('org.junit.jupiter:junit-jupiter-api:5.7.2',
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.4.2' 'org.hamcrest:hamcrest-library:2.2', 'net.obvj:junit-utils:1.3.1')
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
} }
repositories { test {
mavenCentral() useJUnitPlatform()
} }
application {
mainClassName = "Main" mainClassName = "Main"
test {
useJUnitPlatform()
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment