dion        2002/07/10 04:57:23

  Modified:    src/plugins/ant plugin.jelly
  Log:
  Patch to provide dist and clean targets as required by Jakarta Commons projects.
  Provided by Martin van den Bemt
  
  Revision  Changes    Path
  1.13      +15 -0     jakarta-turbine-maven/src/plugins/ant/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins/ant/plugin.jelly,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- plugin.jelly      10 Jul 2002 01:46:13 -0000      1.12
  +++ plugin.jelly      10 Jul 2002 11:57:23 -0000      1.13
  @@ -53,6 +53,21 @@
       />
   
     </target>
  +  
  +  <target
  +    name="clean">
  +    <delete dir="target"/>
  +    <delete dir="dist"/>
  +  </target>
  +
  +  <target
  +    name="dist"
  +    depends="jar">
  +    <mkdir dir="dist"/>
  +    <copy todir="dist">
  +      <fileset dir="target"/>
  +    </copy>
  +  </target>
   
     <target
       name="get-deps">
  
  
  

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

Reply via email to