Hello, I'm writing a new mojo in a new plugin. Because I like to reuse functionality from a existing abstract mojo in an existing plugin, I use inheritance. However the parameters defined by the base class (such as project, local, ...) are not automatically injected by maven. I could inject them in my derived class and then set the member variables of the base class. However, is there a way so that this is done by maven automatically ?
Frederik