Skip to content
Snippets Groups Projects
Select Git revision
  • 23ddda055611f4752b8eea7a18c19c804f4f6491
  • main default protected
2 results

check03exe

Blame
  • Forked from LABOUREL Arnaud / M1 INFO FSI TP Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 677 B
    
    plugins {
        id 'application'
        id "org.openjfx.javafxplugin" version "0.0.14"
    }
    
    javafx {
        version = "20"
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
            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")
    }
    
    test {
        useJUnitPlatform()
    }
    
    application {
        mainClass.set("FirefighterApplication")
    }