summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2017-05-20 15:11:58 +0000
committerAndreas Beeker <kiwiwings@apache.org>2017-05-20 15:11:58 +0000
commitb9a2479f920df2313b9c5ddd61335af47ac7ba31 (patch)
tree9ee6eb94e1f253dcc120a1e75d9a9dbb4e437616
parente39e96ff2f4ce25341f17b7f2e8554e772368f0b (diff)
downloadpoi-b9a2479f920df2313b9c5ddd61335af47ac7ba31.tar.gz
poi-b9a2479f920df2313b9c5ddd61335af47ac7ba31.zip
Increase memory for xmlbean generation, because of failing gump builds.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1795661 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 4df378eb89..aa945c68dd 100644
--- a/build.xml
+++ b/build.xml
@@ -777,7 +777,7 @@ under the License.
<!-- We need a fair amount of memory to compile the xml schema, -->
<!-- but limit it in case it goes wrong! -->
<!-- Pick the right amount based on 32 vs 64 bit jvm -->
- <condition property="ooxml.memory" value="768m" else="512m">
+ <condition property="ooxml.memory" value="1024m" else="768m">
<equals arg1="${sun.arch.data.model}" arg2="64" />
</condition>