I'm uplifting an ant plugin to maven plugin and my ant plugin used a DirSet and I see that maven only has a FileSet.
- Can I use FileSet to just gather directories?
- Should I create my own dirset class either from reviewing Ant's PatternSet - DirSet code and then implementing a similar solution using maven's PatternSet and or FileSet?
- Is there a better way to gather directories with includes and excludes?
Thanks for the help
Peter
Found it on Maven's File Management examples page.