Klar mach ich.
Das ist meine gradle.built
[CODE=java]plugins
{
id 'java'
id 'application'
id 'jacoco'
id 'org.openjfx.javafxplugin' version '0.0.13'
}
repositories
{
mavenCentral()
}
//// differenzierte Fehlermeldungen
//allprojects { // Projects
// gradle.projectsEvaluated {
// tasks.withType(JavaCompile) {
// options.encoding = 'UTF-8'
// options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
// }
// }
//}
sourceSets
{
main
{
resources
{
"src/main/resources"
}
}
}
dependencies
{
implementation 'org.json:json:20200518'
implementation 'commons-net:commons-net:3.6'
implementation 'net.lingala.zip4j:zip4j:1.2.4'
implementation 'com.googlecode.soundlibs:jlayer:1.0.1.4' // Converter from mp3 to wav
implementation 'de.sciss:jump3r:1.0.5' // Converter from wav to mp3
// JASPER
implementation 'com.lowagie:itext:4.2.0'
implementation 'net.sf.jasperreports:jasperreports:6.16.0'
testImplementation 'junit:junit:4.12'
}
javafx
{
modules = [ 'javafx.base', 'javafx.controls', 'javafx.fxml', 'javafx.graphics', 'javafx.media', 'javafx.swing', 'javafx.web' ]
version = "18"
}
application
{
mainClass.set("org.joobsoft.vt.MAIN.Main")
}[/CODE]