Skip to content

Commit

Permalink
JavaとJavaFXのバージョンを16に変更 #19
Browse files Browse the repository at this point in the history
  • Loading branch information
jiro4989 committed Nov 24, 2021
1 parent eee5eb9 commit 6878887
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

buildscript {
ext.javafx_version = '14'
ext.javafx_version = '16'

repositories {
mavenCentral()
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 6878887

Please sign in to comment.