Skip to content
Snippets Groups Projects
Select Git revision
  • 0781c1674bf0ab7feb70e38afb6eafd1c40e9ccc
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

build.gradle

Blame
  • Forked from YAGOUBI Rim / Game of life Template
    13 commits behind the upstream repository.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 498 B
    plugins {
        id 'application'
        id "org.openjfx.javafxplugin" version "0.0.14"
    }
    
    javafx {
        version = "20"
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation('org.junit.jupiter:junit-jupiter-api:5.10.0',
                'org.assertj:assertj-core:3.24.2')
        testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
    }
    
    test {
        useJUnitPlatform()
    }
    
    application {
        mainClassName = "GameOfLifeApplication"
    }