Skip to content

Commit 0ad5940

Browse files
committed
Provide support for Java 22.
Signed-off-by: Roland Grunberg <rgrunber@redhat.com>
1 parent 07e4100 commit 0ad5940

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Features
2424
=========
2525
![ screencast ](https://raw.githubusercontent.com/redhat-developer/vscode-java/master/images/vscode-java.0.0.1.gif)
2626

27-
* Supports code from Java 1.5 to Java 21
27+
* Supports code from Java 1.5 to Java 22
2828
* Maven pom.xml project support
2929
* Gradle project support (with experimental Android project import support)
3030
* Standalone Java files support
@@ -81,8 +81,8 @@ If you need to compile your projects against a different JDK version, it's recom
8181
"path": "/path/to/jdk-11",
8282
},
8383
{
84-
"name": "JavaSE-21",
85-
"path": "/path/to/jdk-21",
84+
"name": "JavaSE-22",
85+
"path": "/path/to/jdk-22",
8686
"default": true
8787
},
8888
]

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,8 @@
891891
"JavaSE-18",
892892
"JavaSE-19",
893893
"JavaSE-20",
894-
"JavaSE-21"
894+
"JavaSE-21",
895+
"JavaSE-22"
895896
],
896897
"description": "Java Execution Environment name. Must be unique."
897898
},

0 commit comments

Comments
 (0)