Skip to content
Snippets Groups Projects
Select Git revision
  • 28fb695d77f16fd1d30350f3c5163c6050c7d8c7
  • main default protected
  • develop
3 results

.gitkeep

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 481 B
    
    plugins {
        id 'application'
        id "org.openjfx.javafxplugin" version "0.0.13"
    }
    
    javafx {
        version = "19"
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation('org.junit.jupiter:junit-jupiter-api:5.9.0',
                'org.assertj:assertj-core:3.23.1')
        testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
    }
    
    application {
        mainClassName = "App"
    }
    
    test {
        useJUnitPlatform()
    }