Skip to content

Commit 53f04ba

Browse files
committed
Require Java 11
lemminx is moving to Java 11, so this PR ensures that a Java 11 JRE/JDK is used to run lemminx (or uses the binary if Java 11 is not installed). This PR also updates the documentation to reflect the new Java 11 requirement. It also updates the documentation related to instructions on setting up GraalVM for locally building the binary. Signed-off-by: David Thompson <[email protected]>
1 parent f666928 commit 53f04ba

7 files changed

+15
-15
lines changed

CONTRIBUTING.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Contributions are essential for keeping this extension great. We try to keep it
88

99
* latest [Visual Studio Code](https://code.visualstudio.com/)
1010
* [Node.js](https://nodejs.org/) v4.0.0 or higher
11-
* [JDK 8+](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
11+
* [JDK 11+](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
1212
* [Maven](https://maven.apache.org/)
1313

1414
### Steps
@@ -118,8 +118,7 @@ If you submit a LemMinX PR, GitHub Actions will generate a binary for your PR th
118118
If you need to generate a LemMinX binary locally for whatever reason, follow these steps:
119119

120120
1. Download and set up [GraalVM and its dependencies](https://www.graalvm.org/docs/getting-started/)
121-
* either 20.x or 21.x should work
122-
* The version for Java 11 is preferred, since it is hard to set up GraalVM Java 8 on Windows
121+
* The latest version should work
123122
2. Make sure that the environment variable `JAVA_HOME` points to the GraalVM installation.
124123
3. Run `./mvnw clean package -DskipTests -Dnative` from the root of the LemMinX repository
125124
* This will use a lot of memory (> 4 GB) and take a while

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,18 @@ or you can read this documentation inside vscode with the command `Open XML Docu
5858

5959
For running the binary version:
6060
* Windows, macOS, or Linux, on a x86_64 CPU
61-
* We do not currently support running on Linux installations without `libc` present
61+
* ~~We do not currently support running on Linux installations without `libc` present~~ See [#1016](https://github.com/redhat-developer/vscode-xml/pull/1016)
6262
* Java is not required for this version
6363
* The binary is automatically downloaded by vscode-xml if it is needed, with no additional action required on the part of the user.
6464

6565
For running the Java version (required if you want to run [extensions](./docs/Extensions.md#custom-xml-extensions) to the base XML features):
66-
* Java JDK (or JRE) 8 or more recent
66+
* Java JDK (or JRE) 11 or more recent
6767
* Ensure Java path is set in either:
6868
* `xml.java.home` in VSCode preferences
6969
* `java.home` in VSCode preferences
7070
* Environment variable `JAVA_HOME` or `JDK_HOME`
7171
* **Note**: The path should end at the parent folder that contains the `bin` folder.
72-
**Example Path**: `/usr/lib/jvm/java-1.8.0` if `bin` exists at `/usr/lib/jvm/java-1.8.0/bin`.
72+
**Example Path**: `/usr/lib/jvm/jre-11` if `bin` exists at `/usr/lib/jvm/jre-11/bin`.
7373
* **Note**: If the path is not set, the extension will attempt to find the path to the JDK or JRE.
7474

7575
See [how to set java home](https://github.com/redhat-developer/vscode-xml/blob/main/docs/Preferences.md#java-home) for more information how this extension searches for Java.
@@ -78,7 +78,7 @@ See [how to set java home](https://github.com/redhat-developer/vscode-xml/blob/m
7878

7979
The following settings are supported:
8080

81-
* [`xml.java.home`](https://github.com/redhat-developer/vscode-xml/blob/main/docs/Preferences.md#java-home): Specifies the folder path to the JDK (8 or more recent) used to launch the XML Language Server if the Java server is being run. If not set, falls back to either the `java.home` preference or the `JAVA_HOME` or `JDK_HOME` environment variables.
81+
* [`xml.java.home`](https://github.com/redhat-developer/vscode-xml/blob/main/docs/Preferences.md#java-home): Specifies the folder path to the JDK (11 or more recent) used to launch the XML Language Server if the Java server is being run. If not set, falls back to either the `java.home` preference or the `JAVA_HOME` or `JDK_HOME` environment variables.
8282
* [`xml.server.vmargs`](https://github.com/redhat-developer/vscode-xml/blob/main/docs/Preferences.md#server-vm-arguments): Specifies extra VM arguments used to launch the XML Language Server.
8383
Eg. use `-Xmx1G -XX:+UseG1GC -XX:+UseStringDeduplication` to bypass class verification, increase the heap size to 1GB and enable String deduplication with the G1 Garbage collector.
8484
* [`xml.server.workDir`](https://github.com/redhat-developer/vscode-xml/blob/main/docs/Preferences.md#server-cache-path): Set a custom folder path for cached XML Schemas. An absolute path is expected, although the `~` prefix (for the user home directory) is supported. Default is `~/.lemminx`.

docs/Preferences.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* An environment variable `JAVA_HOME` or `JDK_HOME`
1313

1414
Please note:
15-
* The path should end at the parent folder that contains the bin folder. As an example, use `/usr/lib/jvm/java-1.8.0` if the bin folder exists at `/usr/lib/jvm/java-1.8.0/bin`.
15+
* The path should end at the parent folder that contains the bin folder. As an example, use `/usr/lib/jvm/jre-11` if the bin folder exists at `/usr/lib/jvm/jre-11/bin`.
1616
* If the path is not set, the extension will attempt to find the path to the JDK or JRE.
1717

1818
## Server VM Arguments

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-xml",
33
"displayName": "XML",
44
"description": "XML Language Support by Red Hat",
5-
"version": "0.27.3",
5+
"version": "0.28.0",
66
"author": "Red Hat",
77
"publisher": "redhat",
88
"icon": "icons/icon128.png",
@@ -160,7 +160,7 @@
160160
"null"
161161
],
162162
"default": null,
163-
"markdownDescription": "Specifies the folder path to the JDK (8 or more recent) used to launch the XML Language Server if the Java server is being run.\nOn Windows, backslashes must be escaped, i.e.\n`\"xml.java.home\": \"C:\\\\Program Files\\\\Java\\\\jdk1.8.0_161\"`. For more information, please refer to [this document](command:xml.open.docs?%5B%7B%22page%22%3A%22Preferences%22%2C%22section%22%3A%22java-home%22%7D%5D).",
163+
"markdownDescription": "Specifies the folder path to the JDK (11 or more recent) used to launch the XML Language Server if the Java server is being run.\nOn Windows, backslashes must be escaped, i.e.\n`\"xml.java.home\": \"C:\\\\Program Files\\\\Java\\\\jdk11\"`. For more information, please refer to [this document](command:xml.open.docs?%5B%7B%22page%22%3A%22Preferences%22%2C%22section%22%3A%22java-home%22%7D%5D).",
164164
"scope": "window"
165165
},
166166
"xml.server.vmargs": {

src/server/requirements.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ function sortJdksBySource(jdks: IJavaRuntime[]) {
128128
}
129129
}
130130
rankedJdks.filter(jdk => jdk.rank === undefined).forEach(jdk => jdk.rank = sources.length);
131+
rankedJdks.filter(jdk => jdk.version.major >= 11);
131132
rankedJdks.sort((a, b) => a.rank - b.rank);
132133
}
133134

@@ -151,8 +152,8 @@ function checkJavaVersion(java_home: string): Promise<number> {
151152
return new Promise((resolve, reject) => {
152153
cp.execFile(java_home + '/bin/java', ['-version'], {}, (error, stdout, stderr) => {
153154
const javaVersion = parseMajorVersion(stderr);
154-
if (javaVersion < 8) {
155-
reject(openJDKDownload('Java 8 or more recent is required to run. Please download and install a recent Java runtime.'));
155+
if (javaVersion < 11) {
156+
reject(openJDKDownload('Java 11 or more recent is required to run. Please download and install a recent Java runtime.'));
156157
}
157158
else {
158159
resolve(javaVersion);

src/server/serverStarter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export async function prepareExecutable(
3232
const CONFIGURE_JAVA = 'More Info';
3333
const DISABLE_WARNING = 'Disable Warning';
3434
window.showInformationMessage('Extensions to the XML language server were detected, but no Java was found. '
35-
+ 'In order to use these extensions, please install and configure a Java runtime (Java 8 or more recent).',
35+
+ 'In order to use these extensions, please install and configure a Java runtime (Java 11 or more recent).',
3636
DOWNLOAD_JAVA, CONFIGURE_JAVA, DISABLE_WARNING)
3737
.then((selection: string) => {
3838
if (selection === DOWNLOAD_JAVA) {

0 commit comments

Comments
 (0)