I have EAR with an application and I need to extend this app with my own code that is packaged as a WAR. Is there a maven plugin that can help me with putting the WAR inside the EAR?
The manual procedure is to put WAR inside EAR and add module to application.xml. I would like to automate that.
EDIT: small clarification - the WAR project is using maven but for EAR I have only the binary file nothing more.
Add WAR as dependency and use maven ear plugin. Then use ear:generate-application-xml goal and finally ear:ear goal.