Skip to content
Snippets Groups Projects
Select Git revision
  • dc3a4c5e381da278fcecf5620f5d53f7e25f2afd
  • 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 497 B
    plugins {
        id 'application'
        id "org.openjfx.javafxplugin" version "0.0.14"
    }
    
    javafx {
        version = "22"
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation('org.junit.jupiter:junit-jupiter-api:5.10.0',
                'org.assertj:assertj-core:3.24.2')
        testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
    }
    
    test {
        useJUnitPlatform()
    }
    
    application {
        mainClassName = "SimulatorApplication"
    }