You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cl...@apache.org on 2008/10/23 10:51:32 UTC

svn commit: r707317 - /felix/sandbox/clement/ipojo-tutorials/10.minutes.tutorial/build.xml

Author: clement
Date: Thu Oct 23 01:51:31 2008
New Revision: 707317

URL: http://svn.apache.org/viewvc?rev=707317&view=rev
Log:
Add a clean task reducing the size of the tutorial distribution

Modified:
    felix/sandbox/clement/ipojo-tutorials/10.minutes.tutorial/build.xml

Modified: felix/sandbox/clement/ipojo-tutorials/10.minutes.tutorial/build.xml
URL: http://svn.apache.org/viewvc/felix/sandbox/clement/ipojo-tutorials/10.minutes.tutorial/build.xml?rev=707317&r1=707316&r2=707317&view=diff
==============================================================================
--- felix/sandbox/clement/ipojo-tutorials/10.minutes.tutorial/build.xml (original)
+++ felix/sandbox/clement/ipojo-tutorials/10.minutes.tutorial/build.xml Thu Oct 23 01:51:31 2008
@@ -2,9 +2,16 @@
 
 <project name="spell.checker.example" default="dist" basedir=".">
 	
-	<target name="dist">
+	<target name="clean">
+		<ant dir="solution/spell.services" target="clean"/>
+		<ant dir="solution/spell.english" target="clean"/>
+		<ant dir="solution/spell.checker" target="clean"/>
+		<ant dir="solution/spell.checker.gui" target="clean"/>
+		<delete dir="felix/cache"/>		
+	</target>
+	
+	<target name="dist" depends="clean">
 		<delete dir="dist"/>
-		<delete dir="felix/cache"/>
 		<mkdir dir="dist"/>
 		<zip destfile="dist/tutorial.zip">
 			<fileset dir=".">