Skip to content
Snippets Groups Projects
Select Git revision
  • 8f3a4ef2ee2b5da6585b5fe78994f5b3e5c07590
  • main default protected
  • variant
3 results

build.gradle

Blame
  • 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")
    }