Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-10-16 01:02:29 +0000
committerDavid Williams2013-10-16 01:02:45 +0000
commit33a583a71ad075c7e17779af2216fdf2114ea8fe (patch)
treedb9a38644574294f7cc9b1145e5a2d42ca87b048 /production/build_eclipse_org.shsource
parent1f17608c823bb7fbb6afee61ef7c630df4d4403e (diff)
downloadeclipse.platform.releng.aggregator-33a583a71ad075c7e17779af2216fdf2114ea8fe.tar.gz
eclipse.platform.releng.aggregator-33a583a71ad075c7e17779af2216fdf2114ea8fe.tar.xz
eclipse.platform.releng.aggregator-33a583a71ad075c7e17779af2216fdf2114ea8fe.zip
Bug 419403 - avoid wget in build scripts
Diffstat (limited to 'production/build_eclipse_org.shsource')
-rw-r--r--production/build_eclipse_org.shsource9
1 files changed, 7 insertions, 2 deletions
diff --git a/production/build_eclipse_org.shsource b/production/build_eclipse_org.shsource
index a028a1717..1de9b9646 100644
--- a/production/build_eclipse_org.shsource
+++ b/production/build_eclipse_org.shsource
@@ -33,7 +33,12 @@ export MAVEN_PATH=${MAVEN_PATH:-/shared/common/apache-maven-3.1.0/bin}
export PATH=$JAVA_HOME/bin:$MAVEN_PATH:$ANT_HOME/bin:$PATH
-AGGREGATOR_REPO=git://git.eclipse.org/gitroot/platform/eclipse.platform.releng.aggregator.git
+# REPO_AND_ACCESS normally defined by now, by bootstrap, but if not, we assume git access to eclipse.org
+export REPO_AND_ACCESS=${REPO_AND_ACCESS:-git://git.eclipse.org/gitroot}
+
+AGGREGATOR_REPO=${REPO_AND_ACCESS}/platform/eclipse.platform.releng.aggregator.git
+
+# Only used to start antrunner for tests. May not need here?
BASEBUILDER_TAG=R38M6PlusRC3G
B_GIT_EMAIL=e4Build@eclipse.org
@@ -44,7 +49,7 @@ COMMITTER_ID=e4Build
export MVN_DEBUG=${MVN_DEBUG:-true}
export MVN_QUIET=${MVN_QUIET:-false}
export UPDATE_BRANDING=true
-export FORCE_LOCAL_REPO=${FORCE_LOCAL_REPO:-false}
+
# Need bree-libs for production builds
MAVEN_BREE=-Pbree-libs

Back to the top