I am wondering about the steps required in Maven to implement custom packaging format that will be bound to 'package' phase.
Basically what I need is to invoke standard maven-war-plugin and then create ZIP archive of specific structure containing created WAR file. Although I know how to do these tasks separately, I am having problems understanding how to tie them together.
I assume a sequence like this:
At some phase maven-war-plugin gets invoked. It automatically handles WAR-specific stuff and creates WAR file
During 'package' phase maven-assembly-plugin gets invoked. It creates ZIP archive of required structure.
What would be the most straightforward and correct way to define these tasks in POM file and bind them to build life cycle properly?