Skip to content

Commit

Permalink
update Orbit builder to parameterize the URL; update for R20170818183…
Browse files Browse the repository at this point in the history
…741 release

Signed-off-by: nickboldt <nboldt@redhat.com>
  • Loading branch information
nickboldt committed Oct 2, 2017
1 parent 31a64f3 commit 3456577
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions jbosstools/updates/requirements/orbit/build.xml
Expand Up @@ -5,7 +5,9 @@
org.eclipse.equinox.launcher.Main -consoleLog -nosplash -data /tmp \
-application org.eclipse.ant.core.antRunner -f build.xml
-->
<property name="version" value="S20170516192513"/>
<property name="version" value="R20170818183741"/>
<property name="LONGNAME" value="Eclipse Orbit ${version}"/>
<property name="URL" value="http://download.eclipse.org/tools/orbit/downloads/drops/${version}/repository"/>

<property name="destination" value="${basedir}"/>
<property name="workDir" value="${destination}/${version}"/>
Expand All @@ -14,9 +16,9 @@
<!-- DO NOT regenerate metadata for this site because Pascal says it's bad; mirror only (then remove references). See also https://bugs.eclipse.org/bugs/show_bug.cgi?id=407892 and https://issues.jboss.org/browse/JBIDE-14422 -->
<target name="run">
<ant antfile="../generic/build.xml" target="mirror">
<property name="LONGNAME" value="Eclipse Orbit"/>
<property name="LONGNAME" value="${LONGNAME}"/>
<property name="version" value="${version}"/>
<property name="URL" value="http://download.eclipse.org/tools/orbit/S-builds/${version}/repository/"/>
<property name="URL" value="${URL}"/>
<property name="latestversiononly" value="${latestversiononly}"/>
</ant>
<ant antfile="${destination}/../remove.references.xml" target="remove.references"/>
Expand Down

0 comments on commit 3456577

Please sign in to comment.