Does the maven-assembly-plugin support EAR as a valid format? The documentation seems to indicate you can configure it any way you want:
- zip
- tar.gz
- tar.bz2
- jar
- dir
- war and any other format that the ArchiveManager has been configured for
Yes, it does. Just specify in your assembly descriptor:
<formats>
<format>ear</format>
</formats>