Skip to content

Commit

Permalink
build: Use Java and JavaFX 22 (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver-Loeffler authored Mar 22, 2024
1 parent ae800b2 commit e77a519
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:

env:
JAVA_VERSION: '21'
JAVA_VERSION: '22'

jobs:
verify:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundles-kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
required: true
type: string
java-version:
default: '21.0.1'
default: '22'
required: false
type: string

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundles-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ on:
required: true
type: string
java-version:
default: '21.0.1'
default: '22'
required: false
type: string
javafx-version:
default: '21.0.1'
default: '22'
required: false
type: string
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundles-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ on:
required: true
type: string
java-version:
default: '21.0.1'
default: '22'
required: false
type: string
javafx-version:
default: '21.0.1'
default: '22'
required: false
type: string
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundles-mac_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ on:
required: true
type: string
java-version:
default: '21.0.1'
default: '22'
required: false
type: string
javafx-version:
default: '21.0.1'
default: '22'
required: false
type: string
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundles-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ on:
required: true
type: string
java-version:
default: '21.0.1'
default: '22'
required: false
type: string
javafx-version:
default: '21.0.1'
default: '22'
required: false
type: string
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
branches: [ master ]

env:
JAVAFX_VERSION: '21.0.1'
JAVA_VERSION: '21'
JAVAFX_VERSION: '22'
JAVA_VERSION: '22'

jobs:
precheck:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on:
- GA

env:
JAVAFX_VERSION: '21.0.1'
JAVA_VERSION: '21'
JAVAFX_VERSION: '22'
JAVA_VERSION: '22'

jobs:
precheck:
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
</modules>

<properties>
<java.version>21.0.1</java.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.release>21</maven.compiler.release>
<javafx.version>21.0.1</javafx.version>
<java.version>22</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.release>${java.version}</maven.compiler.release>
<javafx.version>22</javafx.version>
<aether.version>1.1.0</aether.version>
<charm.glisten.version>6.2.2</charm.glisten.version>
<gluon.attach.version>4.0.19</gluon.attach.version>
Expand Down

0 comments on commit e77a519

Please sign in to comment.