Author: hibou
Date: Mon Jun 29 16:38:28 2009
New Revision: 789381
URL: http://svn.apache.org/viewvc?rev=789381&view=rev
Log:
For some reason the build #93 on hudson didn't ordered correctly the targets
about optimizing the update site... so fixing it manually.
Modified:
ant/ivy/updatesite/trunk/build.xml
Modified: ant/ivy/updatesite/trunk/build.xml
URL:
http://svn.apache.org/viewvc/ant/ivy/updatesite/trunk/build.xml?rev=789381&r1=789380&r2=789381&view=diff
==============================================================================
--- ant/ivy/updatesite/trunk/build.xml (original)
+++ ant/ivy/updatesite/trunk/build.xml Mon Jun 29 16:38:28 2009
@@ -213,6 +213,8 @@
<target name="optimize-ivyde" depends="pack-ivyde-jars,build-digest"
description="Optimize the update site for an IvyDE release" />
+ <target name="optimize" depends="pack-jars,build-digest" />
+
<target name="prepare-pack-ivy-jars">
<!-- prepare the working area, so copy plugin jars -->
<delete dir="${work.dir}/updatesite/" />
@@ -256,6 +258,8 @@
<target name="pack-ivyde-jars"
depends="prepare-pack-ivyde-jars,do-pack-jars" />
+ <target name="pack-jars"
depends="prepare-pack-ivy-jars,prepare-pack-ivyde-jars,do-pack-jars" />
+
<target name="build-digest" depends="eclipse-classpath">
<java classpath="${eclipse.classpath}"
classname="org.eclipse.core.launcher.Main" fork="true" failonerror="true">
<arg value="-consolelog" />
@@ -393,6 +397,6 @@
<property name="ivyde.zip" refid="ivyde.zip.id" />
</target>
- <target name="hudson-build"
depends="clean,hudson-find-ivy-jar,hudson-find-ivyde-zip,install-ivy-and-ivyde,optimize-ivy,optimize-ivyde,checksum"
/>
+ <target name="hudson-build"
depends="clean,hudson-find-ivy-jar,hudson-find-ivyde-zip,install-ivy-and-ivyde,optimize,checksum"
/>
</project>