Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide support for Java 23. #3774

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Features
=========
![ screencast ](https://raw.githubusercontent.com/redhat-developer/vscode-java/master/images/vscode-java.0.0.1.gif)

* Supports code from Java 1.8 to Java 22
* Supports code from Java 1.8 to Java 23
* Maven pom.xml project support
* Gradle project support (with experimental Android project import support)
* Standalone Java files support
Expand Down Expand Up @@ -81,8 +81,8 @@ If you need to compile your projects against a different JDK version, it's recom
"path": "/path/to/jdk-11",
},
{
"name": "JavaSE-22",
"path": "/path/to/jdk-22",
"name": "JavaSE-23",
"path": "/path/to/jdk-23",
"default": true
},
]
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,8 @@
"JavaSE-19",
"JavaSE-20",
"JavaSE-21",
"JavaSE-22"
"JavaSE-22",
"JavaSE-23"
],
"description": "Java Execution Environment name. Must be unique."
},
Expand Down Expand Up @@ -1913,4 +1914,4 @@
},
"segmentWriteKey": "Y7Y5Xk8dKEhVZHTmAkFZkqgdN4d7c4lt",
"segmentWriteKeyDebug": "BflPll7uuKOCm3y0g7JpfXLVBVFBivDE"
}
}