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

adds support for java 21 #263

Merged
merged 1 commit into from
Sep 28, 2023
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 @@ -58,8 +58,8 @@ If you need to compile your projects against a different JDK version, it's recom
"path": "/path/to/jdk-11",
},
{
"name": "JavaSE-20",
"path": "/path/to/jdk-20",
"name": "JavaSE-21",
"path": "/path/to/jdk-21",
"default": true
},
]
Expand All @@ -69,7 +69,7 @@ The default runtime will be used when you open standalone Java files.

## Features

- Supports code from Java 1.5 to Java 20
- Supports code from Java 1.5 to Java 21
- Maven pom.xml project support
- Gradle project support (with experimental Android project import support)
- Standalone Java files support
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,8 @@
"JavaSE-17",
"JavaSE-18",
"JavaSE-19",
"JavaSE-20"
"JavaSE-20",
"JavaSE-21"
],
"description": "Java Execution Environment name. Must be unique."
},
Expand Down