Skip to content
Snippets Groups Projects
Select Git revision
  • e8ca8aa1d28f3b14f81b8a488ab2827aaafb53f9
  • main default protected
  • aimen_nabi
  • variant
4 results

build.gradle

Blame
  • Forked from COUETOUX Basile / FirefighterStarter
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 408 B
    
    plugins {
        id 'application'
        id "org.openjfx.javafxplugin" version "0.0.10"
    }
    
    javafx {
        version = "17"
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    
    repositories {
        mavenCentral()
    }
    dependencies {
        testImplementation group: 'junit', name: 'junit', version: '4.12'
        testImplementation 'org.hamcrest:hamcrest-library:1.3'
    }
    
    mainClassName = "App"
    
    
    test {
        useJUnitPlatform()
    }