added undeploy as a dependency for the clean target
authormaxcooper <maxcooper>
Mon, 9 Jun 2003 11:27:12 +0000 (11:27 +0000)
committermaxcooper <maxcooper>
Mon, 9 Jun 2003 11:27:12 +0000 (11:27 +0000)
build.xml

index 846d953..fccebef 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0"?>
 
 <!--
-$Id: build.xml,v 1.19 2003/05/26 11:14:51 maxcooper Exp $
-$Revision: 1.19 $
-$Date: 2003/05/26 11:14:51 $
+$Id: build.xml,v 1.20 2003/06/09 11:27:12 maxcooper Exp $
+$Revision: 1.20 $
+$Date: 2003/06/09 11:27:12 $
 -->
 
 <!DOCTYPE project [
@@ -90,7 +90,7 @@ $Date: 2003/05/26 11:14:51 $
 
    <!-- ========== Clean Target ==================================================================================== -->
 
-   <target name="clean" description="restores directory structure to pre-build status">
+   <target name="clean" description="restores directory structure to pre-build status" depends="undeploy">
       <delete dir="${build.dir}"/>
       <delete dir="${dist.dir}"/>
       <delete dir="${release.dir}"/>
@@ -246,6 +246,7 @@ $Date: 2003/05/26 11:14:51 $
          optimize="${compile.optimize}"
          deprecation="${compile.deprecation}">
          <classpath refid="test-compile.classpath"/>
+         <sourcepath location="${src.example.dir}"/>
       </javac>
    </target>