I wish to create a zip archive of my \"target\" directory (${project.build.directory). using the maven-assembly-plugin seems to me like overkill for such a simple task (and
If the bin predefined assembly descriptor doesn't suit your needs, then you have three options:
Personally, I would just use the maven-assembly-plugin with the following zip.xml
descriptor:
bin
/
zip
${project.build.directory}
And in your POM:
maven-assembly-plugin
2.6
src/main/assembly/zip.xml
make-assembly
package
single