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

build.gradle

  • Forked from COUETOUX Basile / FirefighterStarter
    86 commits ahead of the upstream repository.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 654 B
    
    plugins {
        id("com.github.johnrengelman.shadow") version "8.1.1"
        id 'application'
        id 'java'
        id "org.openjfx.javafxplugin" version "0.1.0"
    }
    
    javafx {
        version = "21"
        modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.graphics']
    }
    
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
        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("app.SimulatorMain")
    }