I need to execute the same maven plugin more than once in the same phase.
What I want:
- Execute maven-assembly-plugin
- Execute myplugin (depends on step 1)
- Execute maven-assembly-plugin again (depends on step 2)
- Execute myplugin again (depends on step 3)
Execution order when I define the plugins sequentially (same order as above):
- Execute maven-assembly-plugin
- Execute maven-assembly-plugin again
- Execute myplugin
- Execute myplugin again
My solution is to combine all executions in my own plugin to control the exact order, but I don't think it's the best way to do it. Thanks !