On 6/8/07, Orford, Ian <[EMAIL PROTECTED]> wrote:
P is the parent POM that has modules A, B, C and D. P defines A, B, C and D in <dependencyManagement> A has P as a parent and no dependencies at all. B has P as a parent and defines A in <dependencies> C has P as a parent and defines A and B in <dependencies> D has P as a parent and defines C in <dependencies> Mvn install compiles A, then B. The trouble starts because it then moves onto D. Since C hasn't been installed, it fails.
Hi Ian, Are you building from the directory that contains the parent pom.xml? Are modules A,B,C,D listed as modules in the parent pom.xml? Cheers Jo
