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

Updated gradle config 2023

parent 7e011d80
No related branches found
No related tags found
No related merge requests found
Pipeline #18937 passed
plugins { plugins {
id 'java'
id 'application' id 'application'
id "org.openjfx.javafxplugin" version "0.0.13" id "org.openjfx.javafxplugin" version "0.0.14"
} }
javafx { javafx {
version = "18.0.2" version = "20"
modules = [ 'javafx.controls', 'javafx.fxml' ] modules = [ 'javafx.controls', 'javafx.fxml' ]
} }
...@@ -13,14 +14,18 @@ repositories { ...@@ -13,14 +14,18 @@ repositories {
} }
dependencies { dependencies {
testImplementation('org.junit.jupiter:junit-jupiter-api:5.9.0', testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
'org.assertj:assertj-core:3.23.1') because("Only needed to run tests in a version of IntelliJ IDEA that bundles older versions")
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.9.0') }
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.assertj:assertj-core:3.24.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
} }
test { test {
useJUnitPlatform() useJUnitPlatform()
} }
application { application {
mainClassName = "main.MainApp" mainClass.set("main.MainApp")
} }
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment