I have a project, my-project, that has a submodule, wala. Wala in turn has several sub-projects. Like this:
my-project
| pom.xml
| wala
| pom.xml
| wala.foo
| pom.xml
| wala.bar
| pom.xml
| wala.baz
| pom.xml
my-project only depends on wala.foo and wala.baz and does not depend on wala.bar. In fact, wala.bar has build problems currently that are beyond my control.
Is there a way that my-project/pom.xml can depend on wala.foo and wala.baz without depending on wala.bar?