Skip to content
Snippets Groups Projects
build.gradle 416 B
Newer Older
  • Learn to ignore specific revisions
  • couetoux.b's avatar
    couetoux.b committed
    
    
    
    BasileCouetoux's avatar
    BasileCouetoux committed
    
    plugins {
        id 'application'
    
    couetoux.b's avatar
    couetoux.b committed
        id "org.openjfx.javafxplugin" version "0.0.10"
    
    BasileCouetoux's avatar
    BasileCouetoux committed
    }
    
    javafx {
    
    couetoux.b's avatar
    couetoux.b committed
        version = "17"
    
    BasileCouetoux's avatar
    BasileCouetoux committed
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    
    repositories {
        mavenCentral()
    }
    dependencies {
    
    couetoux.b's avatar
    couetoux.b committed
        testImplementation group: 'junit', name: 'junit', version: '4.12'
        testImplementation 'org.hamcrest:hamcrest-library:1.3'
    
    BasileCouetoux's avatar
    BasileCouetoux committed
    }
    
    mainClassName = "shape.App"
    
    
    test {
        useJUnitPlatform()
    }