Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Java 16
Browse files Browse the repository at this point in the history
Signed-off-by: Snjezana Peco <[email protected]>
snjeza committed Mar 17, 2021
1 parent bcd7dca commit 10dcd72
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ Features
=========
![ screencast ](https://raw.githubusercontent.com/redhat-developer/vscode-java/master/images/vscode-java.0.0.1.gif)

* Supports code from Java 1.5 to Java 15
* Supports code from Java 1.5 to Java 16
* Maven pom.xml project support
* Basic Gradle Java project support (Android not supported)
* Standalone Java files support
@@ -78,6 +78,12 @@ If you need to compile your projects against a different JDK version, it's recom
"path": "/path/to/jdk-15",
"default": true
},
,
{
"name": "JavaSE-16",
"path": "/path/to/jdk-16",
"default": true
},
]
```
The default runtime will be used when you open standalone Java files.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -594,7 +594,8 @@
"JavaSE-12",
"JavaSE-13",
"JavaSE-14",
"JavaSE-15"
"JavaSE-15",
"JavaSE-16"
],
"description": "Java Execution Environment name. Must be unique."
},

0 comments on commit 10dcd72

Please sign in to comment.