summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2016-06-05 11:53:28 +0000
committerAndreas Beeker <kiwiwings@apache.org>2016-06-05 11:53:28 +0000
commitbfa8d11ada481037dd7852bc46f76212acfac57e (patch)
tree6080da843557ed1fc18fdf1e399ae148aedfa6a2
parent9ec68c82d423d64d3983ca6ff2be54a8566329c2 (diff)
downloadpoi-bfa8d11ada481037dd7852bc46f76212acfac57e.tar.gz
poi-bfa8d11ada481037dd7852bc46f76212acfac57e.zip
Check if user properties are picked up on maven build
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1746901 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sonar/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar/pom.xml b/sonar/pom.xml
index d66c05d943..0ad1edd20c 100644
--- a/sonar/pom.xml
+++ b/sonar/pom.xml
@@ -127,6 +127,10 @@
<!-- 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 -->
+ <!-- ********************************************************** -->
+ <!-- If you are using IntelliJ, you might want to check -->
+ <!-- http://stackoverflow.com/questions/24115142 -->
+ <!-- ********************************************************** -->
<profile>
<id>32bitstuff</id>
<activation>
@@ -137,6 +141,7 @@
</activation>
<properties>
<maven.compiler.maxmem>512m</maven.compiler.maxmem>
+ <argLine>-Xmx768m -XX:MaxPermSize=128m @{argLine}</argLine>
</properties>
</profile>
@@ -150,6 +155,7 @@
</activation>
<properties>
<maven.compiler.maxmem>768m</maven.compiler.maxmem>
+ <argLine>-Xmx1024m -XX:MaxPermSize=256m @{argLine}</argLine>
</properties>
</profile>