Skip to content

Commit

Permalink
upgrade jfx 18 & java 17 to 18, respectively
Browse files Browse the repository at this point in the history
  • Loading branch information
maschmann committed May 15, 2022
1 parent 4f12d81 commit abe981e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'dev.aschmann'
version '1.0.0'
version '1.1.0'

repositories {
mavenCentral()
Expand All @@ -16,8 +16,8 @@ ext {
junitVersion = '5.8.2'
}

sourceCompatibility = '11'
targetCompatibility = '11'
sourceCompatibility = '17'
targetCompatibility = '17'

tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
Expand All @@ -29,7 +29,7 @@ application {
}

javafx {
version = '11.0.2'
version = '18.0.1'
modules = ['javafx.controls', 'javafx.fxml', 'javafx.base']
}

Expand All @@ -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'
}
}

Expand Down

0 comments on commit abe981e

Please sign in to comment.