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

gradle-wrapper.properties

Blame
  • Forked from YAGOUBI Rim / 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 416 B
    
    
    
    plugins {
        id 'application'
        id "org.openjfx.javafxplugin" version "0.0.10"
    }
    
    javafx {
        version = "17"
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    
    repositories {
        mavenCentral()
    }
    dependencies {
        testImplementation group: 'junit', name: 'junit', version: '4.12'
        testImplementation 'org.hamcrest:hamcrest-library:1.3'
    }
    
    mainClassName = "shape.App"
    
    
    test {
        useJUnitPlatform()
    }