With the maven-clean-plugin I would like to remove all folders that start with "tmp". Is this possbile with maven wildcards? I have tried:
<fileset>
<directory>${project.basedir}</directory>
<includes>
<include>**/tmp*</include>
</includes>
</fileset>
Which does not work.
This configuration works for me:
If I add these folders in the project root:
Then the
mvn clean
will delete the first two folders and leave the last one.