You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
Copy file name to clipboardexpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -58,18 +58,18 @@ or you can read this documentation inside vscode with the command `Open XML Docu
58
58
59
59
For running the binary version:
60
60
* 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)
62
62
* Java is not required for this version
63
63
* The binary is automatically downloaded by vscode-xml if it is needed, with no additional action required on the part of the user.
64
64
65
65
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
67
67
* Ensure Java path is set in either:
68
68
*`xml.java.home` in VSCode preferences
69
69
*`java.home` in VSCode preferences
70
70
* Environment variable `JAVA_HOME` or `JDK_HOME`
71
71
***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`.
73
73
***Note**: If the path is not set, the extension will attempt to find the path to the JDK or JRE.
74
74
75
75
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
78
78
79
79
The following settings are supported:
80
80
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.
82
82
*[`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.
83
83
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.
84
84
*[`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`.
Copy file name to clipboardexpand all lines: docs/Preferences.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
* An environment variable `JAVA_HOME` or `JDK_HOME`
13
13
14
14
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`.
16
16
* If the path is not set, the extension will attempt to find the path to the JDK or JRE.
Copy file name to clipboardexpand all lines: package.json
+2-2
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "vscode-xml",
3
3
"displayName": "XML",
4
4
"description": "XML Language Support by Red Hat",
5
-
"version": "0.27.3",
5
+
"version": "0.28.0",
6
6
"author": "Red Hat",
7
7
"publisher": "redhat",
8
8
"icon": "icons/icon128.png",
@@ -160,7 +160,7 @@
160
160
"null"
161
161
],
162
162
"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).",
0 commit comments