On Sat, Nov 15, 2008 at 6:09 AM, Fabien Tillay <[EMAIL PROTECTED]> wrote: > Si I'm gonna reformulate my question : > Is it possible with Continuum 1.1 or 1.2 to build a parent pom recursively : > > - With this structure > > Root > -parent > ----->pom.xml > -moduleA > ----->pom.xml > -moduleB > ----->pom.xml
No, you can't do a recursive build from the parent with this structure. When you add a project with this structure, Continuum checks out the following: /path/to/working-copies/1/pom.xml /path/to/working-copies/2/pom.xml /path/to/working-copies/3/pom.xml Assuming '1' is the parent pom, if you change to that directory and type 'mvn install', it will fail because ../moduleA and ../moduleB do not exist. However as I mentioned, using the 'Build all projects' button does work. -- Wendy
