Author: snoopdave
Date: Tue May 15 06:04:13 2007
New Revision: 538164
URL: http://svn.apache.org/viewvc?view=rev&rev=538164
Log:
Added a clean target
Modified:
roller/trunk/docs/examples/plugins/pluginmodel/build.xml
Modified: roller/trunk/docs/examples/plugins/pluginmodel/build.xml
URL:
http://svn.apache.org/viewvc/roller/trunk/docs/examples/plugins/pluginmodel/build.xml?view=diff&rev=538164&r1=538163&r2=538164
==============================================================================
--- roller/trunk/docs/examples/plugins/pluginmodel/build.xml (original)
+++ roller/trunk/docs/examples/plugins/pluginmodel/build.xml Tue May 15
06:04:13 2007
@@ -16,5 +16,10 @@
</javac>
<jar basedir="build" destfile="dist/authusermodel.jar" />
</target>
+
+ <target name="clean" >
+ <delete dir="build" />
+ <delete dir="clean" />
+ </target>
-</project>
\ No newline at end of file
+</project>