Skip to content
Snippets Groups Projects
build.gradle 481 B
Newer Older
  • Learn to ignore specific revisions
  • plugins {
    
        id 'application'
    
        id "org.openjfx.javafxplugin" version "0.0.13"
    
    javafx {
        version = "17"
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
    
        testImplementation('org.junit.jupiter:junit-jupiter-api:5.9.0',
                'org.assertj:assertj-core:3.23.1')
        testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.9.0')
    
    }
    
    test {
        useJUnitPlatform()
    }
    
    application {
    
        mainClassName = "Main"
    
    LABOUREL Arnaud's avatar
    LABOUREL Arnaud committed
    }