From 68788870a5629d6e27e0582dc12f211dfabf5cd4 Mon Sep 17 00:00:00 2001 From: jiro4989 Date: Wed, 24 Nov 2021 13:26:10 +0900 Subject: [PATCH] =?UTF-8?q?Java=E3=81=A8JavaFX=E3=81=AE=E3=83=90=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E3=83=A7=E3=83=B3=E3=82=9216=E3=81=AB=E5=A4=89?= =?UTF-8?q?=E6=9B=B4=20#19?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 6 +++--- build.gradle | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7734286..3f03643 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,8 +12,8 @@ on: env: APP_NAME: 'tkite' - JAVA_VERSION: '14' - JAVAFX_VERSION: '14.0.1' + JAVA_VERSION: '16' + JAVAFX_VERSION: '16' jobs: before: @@ -52,7 +52,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-java@v1 with: - java-version: '14' + java-version: '16' java-package: jdk architecture: x64 - name: Build diff --git a/build.gradle b/build.gradle index dc24163..621a82c 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ */ buildscript { - ext.javafx_version = '14' + ext.javafx_version = '16' repositories { mavenCentral() @@ -63,8 +63,8 @@ dependencies { implementation "org.openjfx:javafx-swing:$javafx_version" } -sourceCompatibility = 14 -targetCompatibility = 14 +sourceCompatibility = 16 +targetCompatibility = 16 application { // Define the main class for the application.