I currently have about 16 projects that I build with maven that get deployed to the same application server that make up something like a \"portal\". I have built a parent p
You can use following layout:
+parent-project
pom.xml
+child-project-1
pom.xml
+child-project-2
pom.xml
In parent project pom add:
../child-project-1
../child-project-2
In children projects pom add:
../parent-project
Children Projects can optionally be dependent.
Following links may also help: