I have multiple war modules. To have files of all these modules in single
war file, I some war modules have dependency on others. 

    <dependency>

      <groupId>ashish.prgcal</groupId>

      <artifactId>coreWeb</artifactId>

      <version>1.0-SNAPSHOT</version>

      <type>war</type>

    </dependency>

 

Every time I want to build the war, I run a <packaging>pom</packaging> POM
that builds all these modules. To resolve war dependency, maven builds each
war, copies it to repository and then explodes repository war again. This
has made my build process very slow. What am I doing wrong?

 

Ashish

 

Reply via email to