Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/example-buildproperties.php2
-rw-r--r--production/build_eclipse_org.shsource2
-rwxr-xr-xscripts/build.sh2
-rwxr-xr-xscripts/xsl/upVersionParents.sh2
4 files changed, 4 insertions, 4 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/example-buildproperties.php b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/example-buildproperties.php
index 44bb6332e..70a743d51 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/example-buildproperties.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/example-buildproperties.php
@@ -16,7 +16,7 @@ $BUILD_TYPE = "I";
$TIMESTAMP = "20130314-1330";
$TMP_DIR = "/shared/eclipse/builds/4I/tmp";
$JAVA_HOME = "/shared/common/jdk1.7.0-latest";
-$MAVEN_OPTS = "-Xmx2048m -XX:MaxPermSize=256M -Djava.io.tmpdir=/shared/eclipse/builds/4I/tmp -Dtycho.localArtifacts=ignore";
+$MAVEN_OPTS = "-Xmx2560m -XX:MaxPermSize=256M -Djava.io.tmpdir=/shared/eclipse/builds/4I/tmp -Dtycho.localArtifacts=ignore";
$MAVEN_PATH = "/shared/common/apache-maven-3.1.0/bin";
$AGGREGATOR_REPO = "git://git.eclipse.org/gitroot/platform/eclipse.platform.releng.aggregator.git";
$BASEBUILDER_TAG = "R38M6PlusRC3G";
diff --git a/production/build_eclipse_org.shsource b/production/build_eclipse_org.shsource
index a02e627f8..592201fe7 100644
--- a/production/build_eclipse_org.shsource
+++ b/production/build_eclipse_org.shsource
@@ -28,7 +28,7 @@ export ANT_OPTS=${ANT_OPTS:-"-Dbuild.sysclasspath=ignore -Dincludeantruntime=fal
#
# remember, MaxPermSize is specific to "Oracle VMs". It has to be removed (or over ridden)
# for other VMs or the VM might fail to start due to unrecognized -XX option.
-export MAVEN_OPTS=${MAVEN_OPTS:--Xmx2048m -XX:MaxPermSize=256M -Djava.io.tmpdir=${TMP_DIR} -Dtycho.localArtifacts=ignore -Declipse.p2.mirrors=false}
+export MAVEN_OPTS=${MAVEN_OPTS:--Xmx2560m -XX:MaxPermSize=256M -Djava.io.tmpdir=${TMP_DIR} -Dtycho.localArtifacts=ignore -Declipse.p2.mirrors=false}
export MAVEN_PATH=${MAVEN_PATH:-/shared/common/apache-maven-3.1.0/bin}
export PATH=$JAVA_HOME/bin:$MAVEN_PATH:$ANT_HOME/bin:$PATH
diff --git a/scripts/build.sh b/scripts/build.sh
index e20cc3c35..40dd1a7b6 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -37,7 +37,7 @@ do
done
-export MAVEN_OPTS=-Xmx2048m
+export MAVEN_OPTS=-Xmx2560m
LOCAL_REPO=$BASEDIR/localRepo
diff --git a/scripts/xsl/upVersionParents.sh b/scripts/xsl/upVersionParents.sh
index 557aa8815..12316da51 100755
--- a/scripts/xsl/upVersionParents.sh
+++ b/scripts/xsl/upVersionParents.sh
@@ -10,7 +10,7 @@ LREPO=$(pwd)/../localMavenRepo
export JAVA_HOME=/opt/local/jdk1.7.0-latest
TMP_DIR=$(pwd)/../tmp
mkdir -p $TMP_DIR
-export MAVEN_OPTS="-Xmx2048m -XX:MaxPermSize=256M -Djava.io.tmpdir=${TMP_DIR}"
+export MAVEN_OPTS="-Xmx2560m -XX:MaxPermSize=256M -Djava.io.tmpdir=${TMP_DIR}"
export MAVEN_PATH=/opt/local/apache-maven-3.1.0/bin
export PATH=$JAVA_HOME/bin:$MAVEN_PATH:$PATH

Back to the top