On 8/13/07, Max Bowsher <[EMAIL PROTECTED]> wrote: > Barrie Treloar wrote: > > On 8/10/07, Max Bowsher <[EMAIL PROTECTED]> wrote: > >> Try <configuration combine.children="append"> - not tested, but I think > >> that'll do what you want. > > > > Is this an undocumented feature as it is not listed in the > > http://maven.apache.org/ref/current/maven-model/maven.html > > It's not actually a Maven feature at all. It's a feature of the > underlying XML manipulation class that Maven uses - Plexus Xpp3Dom.
mvn help:effective-pom <artifactId>maven-clean-plugin</artifactId> <version>2.1.1</version> <configuration combine.children="append"> <filesets> <fileset> <directory>lib</directory> <followSymlinks>false</followSymlinks> </fileset> </filesets> <filesets> <fileset> <directory>logs</directory> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> Result of mvn clean: [INFO] Deleting file-set: logs (included: [], excluded: []) Looks like its not possible to do what I want and I will have to duplicate details. Thanks anyway --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]