Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2015-04-19 20:19:24 +0000
committerDavid Williams2015-04-19 20:19:24 +0000
commit7d8d3a614d3424570e5ca494b49522053268be67 (patch)
tree4591ee6dd35fad7083f9cb04df6f349ecd15b366 /production/build_eclipse_org.shsource
parent0626857dec489399bc0d841529ef7a55cd8257d7 (diff)
downloadeclipse.platform.releng.aggregator-7d8d3a614d3424570e5ca494b49522053268be67.tar.gz
eclipse.platform.releng.aggregator-7d8d3a614d3424570e5ca494b49522053268be67.tar.xz
eclipse.platform.releng.aggregator-7d8d3a614d3424570e5ca494b49522053268be67.zip
Bug 463510 - We should use Java 8 in the infrastructure signing service.
(Is currently Java 6). trying a few more test builds with variable set and oving 'up' to Java 8.
Diffstat (limited to 'production/build_eclipse_org.shsource')
-rw-r--r--production/build_eclipse_org.shsource3
1 files changed, 2 insertions, 1 deletions
diff --git a/production/build_eclipse_org.shsource b/production/build_eclipse_org.shsource
index f475c7679..c6ea175e4 100644
--- a/production/build_eclipse_org.shsource
+++ b/production/build_eclipse_org.shsource
@@ -47,7 +47,8 @@ export TMP_DIR=${TMP_DIR:-${BUILD_ROOT}/tmp}
mkdir -p ${TMP_DIR}
# these could be machine specific
-export JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.7.0-latest}
+#export JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.7.0-latest}
+export JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.8.0_x64-latest}
# required for when ant is used. Unclear how maven's "antrun" finds its version of Ant,
# built in? Or system path?
# But, without the ANT_OPTS, we do get messages about "to get repeatable builds, to ignore sysclasspath"

Back to the top