jon         02/05/13 17:07:59

  Modified:    .        build-bootstrap.xml
  Log:
  move the deletion of stuff into a clean target
  
  -jon
  
  Revision  Changes    Path
  1.81      +12 -10    jakarta-turbine-maven/build-bootstrap.xml
  
  Index: build-bootstrap.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/build-bootstrap.xml,v
  retrieving revision 1.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- build-bootstrap.xml       7 May 2002 16:09:39 -0000       1.80
  +++ build-bootstrap.xml       14 May 2002 00:07:59 -0000      1.81
  @@ -61,18 +61,9 @@
     
     <target
       name="bootstrap"
  -    depends="check-properties"
  +    depends="check-properties,clean"
       description="--> Update local jars, generate maven's build system, generate 
maven, and setup the distributions.">
      
  -    <!-- Remove any old installations of Maven -->
  -    <delete dir="${maven.home}"/>
  -
  -    <!-- Remove any cruft left in build.dest -->
  -    <delete dir="target"/>
  -
  -    <!-- Remove the maven.jar from lib.repo -->
  -    <delete file="${lib.repo}/maven.jar"/>
  -
       <antcall target="update-jars"/>
       <antcall target="generate-build"/>
       <antcall target="install"/>
  @@ -83,6 +74,17 @@
       
       <!-- Get rid of the generated template build files -->
       <delete dir="maven"/>
  +  </target>
  +  
  +  <target name="clean">
  +    <!-- Remove any old installations of Maven -->
  +    <delete dir="${maven.home}"/>
  +
  +    <!-- Remove any cruft left in build.dest -->
  +    <delete dir="target"/>
  +
  +    <!-- Remove the maven.jar from lib.repo -->
  +    <delete file="${lib.repo}/maven.jar"/>  
     </target>
   
     <!-- ================================================================== -->
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to