Skip to content

Commit a2ddbcb

Browse files
committed
Update references to upcoming Java 11 requirements
Signed-off-by: Fred Bricon <fbricon@gmail.com>
1 parent 4c16f2a commit a2ddbcb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Quick Start
1212
============
1313
1. Install the Extension
1414
2. If you do not have a _Java_ Development Kit correctly [set](#setting-the-jdk)
15-
* Download and install a recent Java Development Kit (latest Java 8 is the minimum requirement).
15+
* Download and install a recent Java Development Kit (latest Java 8 is the current minimum requirement, but [Java 11 will soon be required](https://github.com/redhat-developer/vscode-java/wiki/JDK-Requirements#jdk11.requirement)).
1616
3. Extension is activated when you first access a Java file
1717
* Recognizes projects with *Maven* or *Gradle* build files in the directory hierarchy.
1818

src/requirements.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function checkJavaVersion(javaHome: string): Promise<number> {
9494
const getJDK = "Get the Java Development Kit";
9595
const jdkWarning = getJavaConfiguration().get(section);
9696
if (jdkWarning) {
97-
const message = `Java 11, or more recent, [will soon be required](https://github.com/redhat-developer/vscode-java/wiki/JDK-Requirements) to run. Consider installing a recent JDK`;
97+
const message = `Java 11, or more recent, [will soon be required](https://github.com/redhat-developer/vscode-java/wiki/JDK-Requirements#jdk11.requirement) to run. Consider installing a recent JDK`;
9898
window.showInformationMessage(`${message}`, getJDK, dontShowAgain)
9999
.then(selection => {
100100
if (selection === dontShowAgain) {

0 commit comments

Comments
 (0)