Skip to content

Commit 7d0a607

Browse files
authored
Bump JavaFX version to 24 (#805)
1 parent c063c2a commit 7d0a607

File tree

11 files changed

+27
-27
lines changed

11 files changed

+27
-27
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ on:
33
pull_request:
44

55
env:
6-
JAVA_RELEASE: '23'
7-
JAVA_VERSION: '23.0.1'
6+
JAVA_RELEASE: '24'
7+
JAVA_VERSION: '24'
88

99
jobs:
1010
verify:

.github/workflows/bundles-kit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77
required: true
88
type: string
99
java-release:
10-
default: '23'
10+
default: '24'
1111
required: false
1212
type: string
1313
java-version:
14-
default: '23.0.1'
14+
default: '24'
1515
required: false
1616
type: string
1717

.github/workflows/bundles-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010
required: true
1111
type: string
1212
java-release:
13-
default: '23'
13+
default: '24'
1414
required: false
1515
type: string
1616
java-version:
17-
default: '23.0.1'
17+
default: '24'
1818
required: false
1919
type: string
2020
javafx-version:
21-
default: '23.0.1'
21+
default: '24'
2222
required: false
2323
type: string
2424
test:

.github/workflows/bundles-mac.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010
required: true
1111
type: string
1212
java-release:
13-
default: '23'
13+
default: '24'
1414
required: false
1515
type: string
1616
java-version:
17-
default: '23.0.1'
17+
default: '24'
1818
required: false
1919
type: string
2020
javafx-version:
21-
default: '23.0.1'
21+
default: '24'
2222
required: false
2323
type: string
2424
test:

.github/workflows/bundles-mac_aarch64.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010
required: true
1111
type: string
1212
java-release:
13-
default: '23'
13+
default: '24'
1414
required: false
1515
type: string
1616
java-version:
17-
default: '23.0.1'
17+
default: '24'
1818
required: false
1919
type: string
2020
javafx-version:
21-
default: '23.0.1'
21+
default: '24'
2222
required: false
2323
type: string
2424
test:

.github/workflows/bundles-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010
required: true
1111
type: string
1212
java-release:
13-
default: '23'
13+
default: '24'
1414
required: false
1515
type: string
1616
java-version:
17-
default: '23.0.1'
17+
default: '24'
1818
required: false
1919
type: string
2020
javafx-version:
21-
default: '23.0.1'
21+
default: '24'
2222
required: false
2323
type: string
2424
test:

.github/workflows/early-access.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
workflow_dispatch:
77

88
env:
9-
JAVA_RELEASE: '23'
9+
JAVA_RELEASE: '24'
1010
JAVA_VERSION: 'latest'
11-
JAVAFX_VERSION: '23.0.1'
11+
JAVAFX_VERSION: '24'
1212

1313
jobs:
1414
precheck:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ on:
1515
description: 'If candidate is RC, set a version like RC1 or RC2, else leave it empty'
1616

1717
env:
18-
JAVA_RELEASE: '23'
18+
JAVA_RELEASE: '24'
1919
JAVA_VERSION: 'latest'
20-
JAVAFX_VERSION: '23.0.1'
20+
JAVAFX_VERSION: '24'
2121

2222
jobs:
2323
precheck:

kit/src/main/java/com/oracle/javafx/scenebuilder/kit/editor/DocumentationUrls.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, 2024, Gluon and/or its affiliates.
2+
* Copyright (c) 2022, 2025, Gluon and/or its affiliates.
33
* All rights reserved. Use is subject to license terms.
44
*
55
* This file is available and licensed under the following license:
@@ -44,7 +44,7 @@ public enum DocumentationUrls {
4444
/**
4545
* Javadoc home (for Inspector and CSS Analyzer properties)
4646
*/
47-
JAVADOC_HOME("https://openjfx.io/javadoc/23/"),
47+
JAVADOC_HOME("https://openjfx.io/javadoc/24/"),
4848

4949
/**
5050
* This URL is where you go when the user takes Scene Builder Help action (shortcut F1)

kit/src/test/java/com/oracle/javafx/scenebuilder/kit/editor/DocumentationUrlsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, Gluon and/or its affiliates.
2+
* Copyright (c) 2022, 2025, Gluon and/or its affiliates.
33
* All rights reserved. Use is subject to license terms.
44
*
55
* This file is available and licensed under the following license:
@@ -62,7 +62,7 @@ public void that_platform_documentation_url_matches_configuration() {
6262

6363
@Test
6464
public void that_platform_javadoc_url_matches_configuration() {
65-
assertEquals("https://openjfx.io/javadoc/23/",
65+
assertEquals("https://openjfx.io/javadoc/24/",
6666
DocumentationUrls.JAVADOC_HOME.toString());
6767
}
6868

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
</modules>
1818

1919
<properties>
20-
<java.version>21</java.version>
20+
<java.version>22</java.version>
2121
<maven.compiler.source>${java.version}</maven.compiler.source>
2222
<maven.compiler.target>${java.version}</maven.compiler.target>
2323
<maven.compiler.release>${java.version}</maven.compiler.release>
24-
<javafx.version>23.0.1</javafx.version>
24+
<javafx.version>24</javafx.version>
2525
<maven.resolver.version>2.0.0-alpha-8</maven.resolver.version>
2626
<charm.glisten.version>6.2.3</charm.glisten.version>
27-
<gluon.attach.version>4.0.21</gluon.attach.version>
27+
<gluon.attach.version>4.0.22</gluon.attach.version>
2828
<junit.jupiter.version>5.10.0</junit.jupiter.version>
2929
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3030
<project.github.repository>gluonhq/scenebuilder</project.github.repository>

0 commit comments

Comments
 (0)