You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ev...@apache.org on 2003/04/07 14:48:18 UTC

cvs commit: maven/src/plugins-build/clean/xdocs changes.xml

evenisse    2003/04/07 05:48:18

  Modified:    src/plugins-build/clean plugin.jelly
               src/plugins-build/clean/xdocs changes.xml
  Log:
  Add clean:classes and clean:docs goals.
  
  Revision  Changes    Path
  1.2       +12 -0     maven/src/plugins-build/clean/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/clean/plugin.jelly,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- plugin.jelly	5 Apr 2003 08:03:17 -0000	1.1
  +++ plugin.jelly	7 Apr 2003 12:48:18 -0000	1.2
  @@ -12,5 +12,17 @@
       <ant:delete dir="${maven.build.dir}"/>
       <ant:delete file="${basedir}/velocity.log" quiet="true" failonerror="false"/>
     </goal>
  +  
  +  <clean name="clean:classes"
  +         description="Remove all build and test classes">
  +    <ant:delete dir="maven.build.dest"/>
  +    <ant:delete dir="maven.test.dest"/>
  +  </clean>
  +  
  +  <clean name="clean:docs"
  +         description="Remove all docs and generated xdocs">
  +    <ant:delete dir="maven.gen.docs"/>
  +    <ant:delete dir="maven.docs.dest"/>
  +  </clean>
   
   </project>
  
  
  
  1.2       +3 -0      maven/src/plugins-build/clean/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/clean/xdocs/changes.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- changes.xml	5 Apr 2003 08:03:17 -0000	1.1
  +++ changes.xml	7 Apr 2003 12:48:18 -0000	1.2
  @@ -9,6 +9,9 @@
       
       <release version="1.0" date="in cvs">
         <action dev="evenisse" type="add">
  +        Add clean:classes and clean:docs goals.
  +      </action>
  +      <action dev="evenisse" type="add">
           Initial plugin created. Goals are move from java plugin.
         </action>
       </release>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org