I would like to create a multi module project where more than one module is of type war. for example
<module>somejars</module>
<module>servletsAndJsps</module>
<module>springMVCapp</module>
<module>angularJsApp</module>
3 of those would work independly as WAR apps, but when I run mvn install command on parent it would create a super app that contains all 3 apps. web.xml's would be somehow merged or parent web.xml would be used.
please help