You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by John Casey <jd...@commonjava.org> on 2006/02/20 05:59:27 UTC

[ANN] Maven Clean Plugin 2.1 for Maven 2.x Released

We are pleased to announce the 2.1 release of the maven-clean-plugin for 
Maven 2.x.

This release includes:

* Support for following symbolic links (or NOT following them)

     To follow symbolic links when running the clean mojo, use:

     <configuration>
       <followSymLinks>true</followSymLinks>
     </configuration>

* Support for additional file-sets marked for cleaning

     To add another file-set marked for cleaning, use:

     <configuration>
       <filesets>
         <fileset>
           <directory>bin</directory>
           <includes>
             <include>**/*.class</include>
           </includes>
           <excludes>
             <exclude>**/SomethingSpecial*.class</exclude>
           </excludes>
         </fileset>
       </filesets>
     </configuration>

Enjoy!

--The Apache Maven development team

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