How can i create an empty directory to be packaged with my project?
Say if i am moving things around, i can do it by
<fileSet>
<directory>target</directory>
<outputDirectory>bin</outputDirectory>
<includes>
<include>${project.artifactId}*.jar</include>
</includes>
<filtered>true</filtered>
</fileSet>
But what if all i want is for an empty directory created, with some permissions? How can this be done?