Skip to content

Commit

Permalink
Add support for Java 15
Browse files Browse the repository at this point in the history
Signed-off-by: Snjezana Peco <[email protected]>
  • Loading branch information
snjeza authored and fbricon committed Sep 18, 2020
1 parent d0b154c commit 864c503
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 14
* Supports code from Java 1.5 to Java 15
* Maven pom.xml project support
* Basic Gradle Java project support (Android not supported)
* Standalone Java files support
Expand Down Expand Up @@ -77,6 +77,11 @@ If you need to compile your projects against a different JDK version, it's recom
"path": "/path/to/jdk-14",
"default": true
},
{
"name": "JavaSE-15",
"path": "/path/to/jdk-15",
"default": true
},
]
```
The default runtime will be used when you open standalone Java files.
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,8 @@
"JavaSE-11",
"JavaSE-12",
"JavaSE-13",
"JavaSE-14"
"JavaSE-14",
"JavaSE-15"
],
"description": "Java Execution Environment name. Must be unique."
},
Expand Down

0 comments on commit 864c503

Please sign in to comment.