Is it possible to specify multiple (s) in a POM at a greater depth than 1 level?
Yes. This can be done in two ways: 1. add the extra path in the top level POM, or 2. add extra parent poms at different levels, if approriate. For example, you have the following structure: /A/pom.xml (multi-module POM) /A/B/C/pom.xml /A/B/C/D/pom.xml And you want the modules at level C and D built when the multi-module POM is built. For the first solution: Add the following at the top level POM:
Yes. This can be done in two ways: 1. add the extra path in the top level POM, or 2. add extra parent poms at different levels, if approriate. For example, you have the following structure: /A/pom.xml (multi-module POM) /A/B/C/pom.xml /A/B/C/D/pom.xml And you want the modules at level C and D built when the multi-module POM is built.