Skip to content
Snippets Groups Projects
Select Git revision
  • 242be1ede867da55ade0fdfe3c3ef6cdd78b55fc
  • main default protected
  • develop
  • 0.1.1
  • 0.1.0
5 results

Snakefile

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"
    }