Hi Todd,

with the 'resume' goal You can define a module in Your build reactor (meaning the complete hierarchy with all sub modules), from where the build should be resumed. You use this e.g. when the build failed in a module, You fixed the problem in that module and then You don't like to run the hole build again.
Since Maven 2.1.0 there are command line options for that. Call:
  mvn clean install --resume-from [groupId:artifactId]
or
  mvn clean install --resume-from path/to/module

If I understood Your Your question right, You just want to build all sub modules of 'level2Project', right? Then You might just call:
  mvn clean install -f level2Project/pom.xml

Kind regards

   Marc

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to