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

build.gradle

Blame
  • Forked from COUETOUX Basile / graphic-2020
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 637 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()
        maven {
            url 'http://pageperso.lif.univ-mrs.fr/~bertrand.estellon/maven'
        }
    }
    
    dependencies {
        testCompile group: 'junit', name: 'junit', version: '4.12'
        testCompile 'org.hamcrest:hamcrest-library:1.3'
        implementation 'org.info:painter:1.0'
    }
    
    mainClassName = "shape.App"
    
    
    test {
        useJUnitPlatform()
    }