Skip to content
Snippets Groups Projects
Commit 64f15c99 authored by david_williams's avatar david_williams
Browse files

prep for release

parent 6b98db82
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<project
name="update"
default="update"
basedir=".">
<target name="update">
<echo message="Creating duplicate update site based on what site.xml needs" />
<java
taskname="createDuplicateSite"
fork="true"
resultProperty="updateResult"
failonerror="false"
jvm="${java15-home}/bin/java"
classname="org.eclipse.equinox.launcher.Main">
<classpath>
<fileset dir="${eclipse.home}/plugins">
<include name="org.eclipse.equinox.launcher_*.jar" />
</fileset>
</classpath>
<jvmarg value="-DcontinueOnError=true" />
<arg value="-clean" />
<arg value="-nosplash" />
<arg value="-application" />
<arg value="org.eclipse.update.core.standaloneUpdate" />
<arg value="-data" />
<arg value="${basedir}/buildworkspace" />
<arg value="-debug" />
<arg value="-consolelog" />
<arg value="-command" />
<arg value="mirror" />
<arg value="-from" />
<arg value="${from.update.site}" />
<arg value="-to" />
<arg value="${to.update.site}" />
</java>
</target>
</project>
eclipseLocation=${HOME}/eclipse-ppc-33RC3 eclipseLocation=${HOME}/eclipse-ppc-33RC4
java15-home=$HOME/ibm-java2-ppc-50/jre
# should be no reason to ever change the following # should be no reason to ever change the following
updateToolsDir=org.eclipse.wtp.releng.webupdatesite updateToolsDir=org.eclipse.wtp.releng.webupdatesite
\ No newline at end of file
#!/bin/sh
# script to duplicate a whole update site, based on it's site.xml
source properties.shsource
#source parseSiteArg.shsource
from-update-site=$HOME/downloads/webtools/testUpdates
to-update-site=$HOME/downloads/webtools/testUpdates-mirror
ant -f createMirrorSite.xml -Declipse.home=${eclipseLocation} -Dfrom.update.site=${from-update-site} -Dto.update.site=${to-update-site}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment