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' } }