I have a Maven2 project with two submodules that looks like this:
parentproject |---war-file-project |---applet-project
POMs in each of them have corresponding parent module relationships. applet-project contains a simple applet and is configured with JAR packaging. war-file-project contains a simple WAR file project and is configured to pack WAR.
When I create, I would like to make sure that the WAR file contains the resulting JAR file from the applet-project in the /applets .
How to do it?
source share