Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
plugins {
id 'java'
id 'application'
id 'jacoco'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
repositories {
jcenter()
}
dependencies {
compile group: 'org.json', name: 'json', version: '20171018'
compile group: 'com.jcraft', name: 'jsch', version: '0.1.44-1'
compile group: 'commons-net', name: 'commons-net', version: '3.6'
compile group: 'net.lingala.zip4j', name: 'zip4j', version: '1.2.4'
compile group: 'com.googlecode.soundlibs', name: 'jlayer', version: '1.0.1.4'
// implementation 'net.sf.jasperreports:jasperreports:5.5.0'
testCompile 'junit:junit:4.12'
}
javafx {
modules = [ 'javafx.base', 'javafx.controls', 'javafx.fxml', 'javafx.graphics', 'javafx.media', 'javafx.swing', 'javafx.web' ]
version = "13"
}
mainClassName = 'org.joobsoft.vt.MAIN.Main'