We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14a1b22 commit d1bf2b0Copy full SHA for d1bf2b0
scripts/buildJdtlsExt.js
@@ -8,10 +8,10 @@ const path = require('path');
8
const server_dir = path.resolve('jdtls.ext');
9
10
// Set JVM options to increase XML entity size limits
11
+// JDK 24 contains changes to JAXP limits, see: https://bugs.openjdk.org/browse/JDK-8343022
12
const jvmOptions = [
13
'-Djdk.xml.maxGeneralEntitySizeLimit=0',
- '-Djdk.xml.totalEntitySizeLimit=0',
14
- '-Djdk.xml.maxElementDepth=0'
+ '-Djdk.xml.totalEntitySizeLimit=0'
15
].join(' ');
16
17
// Set MAVEN_OPTS environment variable with JVM options
0 commit comments