Maven plugin to run other plugins?

Is there a maven plugin that executes other maven plugins? I swear there was one, and now I can’t find him.

Thank!

+3
source share
1 answer

If you find nothing, you can always write your own using The Mojo Executer . This is a library that allows you to easily write plugins that other plugins call.

I'm still not quite sure that I understand your answer to Waldheinz. Maybe you could explain why you need it? Maybe there is an alternative solution that does not include plugin chains.

+2
source

All Articles