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

build.gradle

Blame
  • Forked from NAVES Guyslain / Game of life Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 518 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.7.2',
                'org.hamcrest:hamcrest-library:2.2', 'net.obvj:junit-utils:1.3.1')
        testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
    }
    
    test {
        useJUnitPlatform()
    }
    
    application {
        mainClassName = "viewer.Main"
    }