Skip to content
Snippets Groups Projects
Select Git revision
  • 44d01dade861aff130a73962b899004639474ae9
  • main default protected
  • master
3 results

build.gradle

Blame
  • Forked from LABOUREL Arnaud / Image Template
    14 commits behind the upstream repository.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    build.gradle 536 B
    plugins {
        id 'application'
        id "org.openjfx.javafxplugin" version "0.0.10"
    }
    
    javafx {
        version = "17"
        modules = [ 'javafx.controls', 'javafx.fxml' ]
    }
    
    sourceCompatibility = "16"
    targetCompatibility = "16"
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
        testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
    }
    
    test {
        useJUnitPlatform()
    }
    
    ext {
        javaMainClass = "viewer.Main"
    }
    
    application {
        mainClassName = javaMainClass
    }