Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2015-03-07 14:55:42 +0000
committerDavid Williams2015-03-07 14:55:42 +0000
commite78217dcf13d94cdfbdf646937d81f27ed4236ca (patch)
treeaae20d93883ada10040cba565298455bd8f8f775 /scripts
parent0d7a4f7dbd8b5e618cb02772d27faeda2b3829b8 (diff)
downloadeclipse.platform.releng.aggregator-e78217dcf13d94cdfbdf646937d81f27ed4236ca.tar.gz
eclipse.platform.releng.aggregator-e78217dcf13d94cdfbdf646937d81f27ed4236ca.tar.xz
eclipse.platform.releng.aggregator-e78217dcf13d94cdfbdf646937d81f27ed4236ca.zip
Bug 460848 - Move to use JDK 1.8 to "run build"
This commit is for all "miscellanious" uses of Java, for various "side" tasks. Less important to move to Java 8, and some chance some of them perhaps should not use Java 8? (but, nothing obvious).
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/xsl/upVersionParents.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xsl/upVersionParents.sh b/scripts/xsl/upVersionParents.sh
index d2056d46f..4fbe86fd4 100755
--- a/scripts/xsl/upVersionParents.sh
+++ b/scripts/xsl/upVersionParents.sh
@@ -7,7 +7,7 @@ LOG=$(pwd)/log_$( date +%Y%m%d%H%M%S ).txt
exec >>$LOG 2>&1
LREPO=$(pwd)/../localMavenRepo
-export JAVA_HOME=/opt/local/jdk1.7.0-latest
+export JAVA_HOME=/opt/local/jdk1.8.0_x64-latest
TMP_DIR=$(pwd)/../tmp
mkdir -p $TMP_DIR
export MAVEN_OPTS="-Xmx2560m -XX:MaxPermSize=256M -Djava.io.tmpdir=${TMP_DIR}"

Back to the top