Author: fmeschbe
Date: Fri Sep 17 06:02:57 2010
New Revision: 997987
URL: http://svn.apache.org/viewvc?rev=997987&view=rev
Log:
SLING-1782 Ammend MAVEN_OPTS recommendation to list separate values for 32bit
and 64bit platforms and also incresed the MaxPermSize requirement for 32bit
platforms since we added to the build since SLING-443
Modified:
sling/trunk/parent/pom.xml
Modified: sling/trunk/parent/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/parent/pom.xml?rev=997987&r1=997986&r2=997987&view=diff
==============================================================================
--- sling/trunk/parent/pom.xml (original)
+++ sling/trunk/parent/pom.xml Fri Sep 17 06:02:57 2010
@@ -146,7 +146,7 @@
</executions>
</plugin>
- <!-- warn for SLING-443 -->
+ <!-- warn for SLING-443/SLING-1782 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
@@ -156,10 +156,11 @@
<configuration>
<tasks>
<echo>
-********************** WARNING (SLING-443) **********************************
+**************** WARNING (SLING-443/SLING-1782) ******************************
On most platforms, you'll get OutOfMemoryErrors when building unless you set
-MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=128M", see SLING-443.
-*****************************************************************************
+on 32bit platforms: MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=256M", see SLING-443
+on 64bit platforms: MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=512M", see SLING-1782
+******************************************************************************
</echo>
</tasks>
</configuration>