Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit 13fb386

Browse files
committed
Added support for Java 21
1 parent 80ebd81 commit 13fb386

3 files changed

Lines changed: 29 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ updates:
2222
open-pull-requests-limit: 10
2323
ignore:
2424
- dependency-name: "org.openjfx:*"
25-
versions: ">=18.x"
25+
versions:
26+
- ">=22.x"

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.0.3
2+
* Added (experimental) support for Java 21
3+
* Updated dependencies
4+
15
## 6.0.2
26
* Java 17: Updated ``org.openjfx`` dependencies to ``17.0.2``
37
* Updated maven plugins

pom.xml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,12 +273,33 @@
273273
<dependency>
274274
<groupId>org.openjfx</groupId>
275275
<artifactId>javafx-swing</artifactId>
276-
<version>17.0.2</version>
276+
<version>17.0.9</version>
277277
</dependency>
278278
<dependency>
279279
<groupId>org.openjfx</groupId>
280280
<artifactId>javafx-web</artifactId>
281-
<version>17.0.2</version>
281+
<version>17.0.9</version>
282+
</dependency>
283+
</dependencies>
284+
</profile>
285+
286+
<profile>
287+
<id>java21</id>
288+
<properties>
289+
<java.runtime.version>[21,22)</java.runtime.version>
290+
<version.suffix>java21</version.suffix>
291+
</properties>
292+
293+
<dependencies>
294+
<dependency>
295+
<groupId>org.openjfx</groupId>
296+
<artifactId>javafx-swing</artifactId>
297+
<version>21.0.1</version>
298+
</dependency>
299+
<dependency>
300+
<groupId>org.openjfx</groupId>
301+
<artifactId>javafx-web</artifactId>
302+
<version>21.0.1</version>
282303
</dependency>
283304
</dependencies>
284305
</profile>

0 commit comments

Comments
 (0)