Skip to content
Snippets Groups Projects
Select Git revision
  • 6ffc322932ce212b6c8ca2069243c14d281ddd05
  • main default protected
2 results

README.md

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