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

updated gradle config

parent 1dee4268
No related branches found
No related tags found
1 merge request!2Simple
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff # Idea
.idea/**/workspace.xml .idea/
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# AWS User-specific
.idea/**/aws.xml
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
cmake-build-*/
# Mongo Explorer plugin
.idea/**/mongoSettings.xml
# File-based project format # File-based project format
*.iws *.iws
......
plugins { plugins {
id 'application' id 'application'
id "org.openjfx.javafxplugin" version "0.0.10" id "org.openjfx.javafxplugin" version "0.0.14"
} }
javafx { javafx {
version = "17" version = "20"
modules = [ 'javafx.controls', 'javafx.fxml' ] modules = [ 'javafx.controls', 'javafx.fxml' ]
} }
...@@ -13,14 +13,20 @@ javafx { ...@@ -13,14 +13,20 @@ javafx {
repositories { repositories {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12' testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
testImplementation 'org.hamcrest:hamcrest-library:1.3' because("Only needed to run tests in a version of IntelliJ IDEA that bundles older versions")
}
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.assertj:assertj-core:3.24.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
} }
mainClassName = "App"
test { test {
useJUnitPlatform() useJUnitPlatform()
} }
application {
mainClass.set("App")
}
\ No newline at end of file
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
rootProject.name = 'ff' rootProject.name = 'firefighter'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment