Skip to content
Snippets Groups Projects
Select Git revision
  • c5c7887f7eab7bfedffcc5c5dd888d15bc7f1586
  • master default protected
2 results

gradlew.bat

Blame
  • Forked from NAVES Guyslain / ProgAvExercices
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 505 B
    plugins {
        id 'java'
    }
    
    plugins {
        id 'application'
        id "org.openjfx.javafxplugin" version "0.0.8"
    }
    
    javafx {
        version = "11"
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    
    version '1.0-SNAPSHOT'
    
    sourceCompatibility = "11"
    targetCompatibility = "11"
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testCompile group: 'junit', name: 'junit', version: '4.12'
        testCompile 'org.hamcrest:hamcrest-library:1.3'
    }
    
    mainClassName = "shape.App"
    
    
    test {
        useJUnitPlatform()
    }