I have a multi module project that keeps puzzling me. I have another 'war' project that imports this multi module pom project using
<type>pom</type>but non of the transitive dependencies are included. Whenever I include the dependencies in the multi module 'pom' project using the
<dependencies> ...
section, I keep getting circular dependencies. It seems that whenever you use 'module' in your multi module 'pom' project, it includes the child modules as dependencies but it doesn't allow these dependencies to be transitive dependencies for projects that include this multi module 'pom' project. Is there a way to use
<dependencyManagement> ...
inside the 'pom' project that has sub modules and have the sub module dependencies pass to the projects that inherit from this pom?