diff options
author | PJ Fanning <fanningpj@apache.org> | 2023-03-26 01:08:13 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2023-03-26 01:08:13 +0000 |
commit | da8fb42bf410b45a7e321cb78589ebf3ce1993cf (patch) | |
tree | 4dee5622424a60a2ebee0dc85303f91dd3d72560 /build.gradle | |
parent | 420c96f74ef6598bc96c8774d5397522803027e8 (diff) | |
download | poi-da8fb42bf410b45a7e321cb78589ebf3ce1993cf.tar.gz poi-da8fb42bf410b45a7e321cb78589ebf3ce1993cf.zip |
increase heap in tests
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1908719 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 1cdd1b3c2c..cfc6af1313 100644 --- a/build.gradle +++ b/build.gradle @@ -286,7 +286,7 @@ subprojects { // set heap size for the test JVM(s) minHeapSize = "128m" - maxHeapSize = "1G" + maxHeapSize = "2g" // Specifying the local via system properties did not work, so we set them this way @@ -550,7 +550,7 @@ subprojects { spotbugs { ignoreFailures = true showStackTraces = false - maxHeapSize = '1g' + maxHeapSize = '2g' } build { |