I have a maven module and a parent of that module. Is there a way to make a call of maven on the parent from within a maven call on the child module?
To be more specific I want to make a call like
mvn -am -pl path/to/module clean compile
and this should also start a plugin like
mvm dependency:tree
The reason for this is that when I would call that plugin on the path/to/module with
mvn -am -pl path/to/module dependency:tree
then this would only print the dependencies of this module and not of the parent and all of its child modules.