diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2021-08-23 19:50:51 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2021-08-23 19:50:51 +0000 |
commit | 20bb767469fcad0a7b6b933df4a08ab74af98890 (patch) | |
tree | ea1de2e46d5a3cc11ebf56b62c80303ea7602769 /build.gradle | |
parent | c270cf95fdc92741dc6be891fe762891435fa6de (diff) | |
download | poi-20bb767469fcad0a7b6b933df4a08ab74af98890.tar.gz poi-20bb767469fcad0a7b6b933df4a08ab74af98890.zip |
Increase general max heap size to cover also integration tests demands
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892551 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index fdb03d0f20..d0f8bd42af 100644 --- a/build.gradle +++ b/build.gradle @@ -222,7 +222,7 @@ subprojects { // set heap size for the test JVM(s) minHeapSize = "128m" - maxHeapSize = "768m" + maxHeapSize = "1512m" // Specifying the local via system properties did not work, so we set them this way jvmArgs << [ |