Skip to content

Commit 829400a

Browse files
committed
set -Djdk.xml.maxGeneralEntitySizeLimit
to fix `JAXP00010003: The length of entity "[xml]" is "100,001" that exceeds the "100,000" limit set by "jdk.xml.maxGeneralEntitySizeLimit"` Signed-off-by: Christoph Rueger <chrisrueger@gmail.com>
1 parent 60c3ef2 commit 829400a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/scripts/ci-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -ev
44
./mvnw --version
55
./gradlew --no-daemon -Dmaven.repo.local=dist/m2 --continue :build "$@"
66
./gradlew --no-daemon -Dmaven.repo.local=dist/m2 --continue :gradle-plugins:build
7-
./mvnw -f old_pom.xml -Dmaven.repo.local=dist/m2 --batch-mode --no-transfer-progress install
7+
./mvnw -f old_pom.xml -Djdk.xml.maxGeneralEntitySizeLimit=500000 -Dmaven.repo.local=dist/m2 --batch-mode --no-transfer-progress install

.github/scripts/ci-publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env bash
22
set -ev
33
./gradlew --no-daemon -Dmaven.repo.local=dist/m2 :publish :gradle-plugins:publish "$@"
4-
./mvnw -f old_pom.xml -Dmaven.repo.local=dist/m2 --batch-mode -Pdist -Dreleaserepo=file:dist/bundles deploy
4+
./mvnw -f old_pom.xml -Djdk.xml.maxGeneralEntitySizeLimit=500000 -Dmaven.repo.local=dist/m2 --batch-mode -Pdist -Dreleaserepo=file:dist/bundles deploy

.github/scripts/codeql-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -ev
44
./mvnw --version
55
./gradlew --no-daemon -Dmaven.repo.local=dist/m2 --continue testClasses :dist:jarDependencies "$@"
66
./gradlew --no-daemon -Dmaven.repo.local=dist/m2 --continue :gradle-plugins:testClasses
7-
./mvnw -f old_pom.xml -Dmaven.repo.local=dist/m2 --batch-mode --no-transfer-progress test-compile
7+
./mvnw -f old_pom.xml -Djdk.xml.maxGeneralEntitySizeLimit=500000 -Dmaven.repo.local=dist/m2 --batch-mode --no-transfer-progress test-compile

0 commit comments

Comments
 (0)