From e7c081c0d30c3171690ec636ba62f5af827054d4 Mon Sep 17 00:00:00 2001 From: Simon Orow <105259087+SimonOrow@users.noreply.github.com> Date: Tue, 7 Feb 2023 09:40:15 -0500 Subject: [PATCH 1/4] Update build.gradle --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index c87c0bd..81c013f 100644 --- a/build.gradle +++ b/build.gradle @@ -17,8 +17,8 @@ ext { junitVersion = '5.9.1' } -sourceCompatibility = '19' -targetCompatibility = '19' +sourceCompatibility = '11' +targetCompatibility = '11' tasks.withType(JavaCompile) { options.encoding = 'UTF-8' @@ -30,7 +30,7 @@ application { } javafx { - version = '19' + version = '11' modules = ['javafx.controls', 'javafx.fxml'] } @@ -55,4 +55,4 @@ jlink { jlinkZip { group = 'distribution' -} \ No newline at end of file +} From 3260843eb88362e895891615ff55c04672c1b6b5 Mon Sep 17 00:00:00 2001 From: Simon Orow <105259087+SimonOrow@users.noreply.github.com> Date: Tue, 7 Feb 2023 09:40:53 -0500 Subject: [PATCH 2/4] Update misc.xml --- .idea/misc.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 9902dc5..9fe9823 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -8,7 +8,7 @@ - + - \ No newline at end of file + From 695c9595bda124a8e537415cb19004f8b34e925a Mon Sep 17 00:00:00 2001 From: Simon Orow <105259087+SimonOrow@users.noreply.github.com> Date: Tue, 7 Feb 2023 09:41:23 -0500 Subject: [PATCH 3/4] Update mainUI.fxml --- src/main/resources/com/simonorow/zoomscheduler/mainUI.fxml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/com/simonorow/zoomscheduler/mainUI.fxml b/src/main/resources/com/simonorow/zoomscheduler/mainUI.fxml index 2bb0279..300fdc1 100644 --- a/src/main/resources/com/simonorow/zoomscheduler/mainUI.fxml +++ b/src/main/resources/com/simonorow/zoomscheduler/mainUI.fxml @@ -46,7 +46,7 @@ - + From b06ef57f23ea94f971fb728b80b7e1c594430bc4 Mon Sep 17 00:00:00 2001 From: Simon Orow <105259087+SimonOrow@users.noreply.github.com> Date: Tue, 7 Feb 2023 09:42:41 -0500 Subject: [PATCH 4/4] Update gradle.yml --- .github/workflows/gradle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index f32c5f2..3b01a75 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -23,10 +23,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up JDK 19 + - name: Set up JDK 11 uses: actions/setup-java@v3 with: - java-version: '19' + java-version: '11' distribution: 'temurin' - name: Build with Gradle uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1