i have 3 modules in my maven project , each of the modules generate a jar file. And then i have a 4th module that generates war out of these jars
Here is my POM which is parent of all modules
<modules>
<module>A</module>
<module>B</module>
<module>C</module>
<module>DWAR</module>
</modules>
IN DWAR's pom , I have specified dependencies on all the three modules A,B,C
<dependency>
<groupId>yyyy</groupId>
<artifactId>A</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
. . And So on.
My war builds successfully, the lib folder of war contains all the jars, but classes folder is empty. But in each of the modules A,B,C classes folder is populated with compiled classes. What am I missing?