From abe981e7fd665d63f2bfc4e42028ec43d1139fc2 Mon Sep 17 00:00:00 2001 From: Marc Aschmann Date: Sun, 15 May 2022 13:49:31 +0200 Subject: [PATCH] upgrade jfx 18 & java 17 to 18, respectively --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index ff8a015..58c9f2c 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { } group 'dev.aschmann' -version '1.0.0' +version '1.1.0' repositories { mavenCentral() @@ -16,8 +16,8 @@ ext { junitVersion = '5.8.2' } -sourceCompatibility = '11' -targetCompatibility = '11' +sourceCompatibility = '17' +targetCompatibility = '17' tasks.withType(JavaCompile) { options.encoding = 'UTF-8' @@ -29,7 +29,7 @@ application { } javafx { - version = '11.0.2' + version = '18.0.1' modules = ['javafx.controls', 'javafx.fxml', 'javafx.base'] } @@ -53,7 +53,7 @@ jlink { imageZip = project.file("${buildDir}/distributions/app-${javafx.platform.classifier}.zip") options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages'] launcher { - name = 'momedit-1.0.0' + name = 'momedit-1.1.0' } }