I am writing a custom maven2 MOJO. I need to access the runtime configuration of another plugin, from this MOJO.
What is the best way to do this?
|
I am writing a custom maven2 MOJO. I need to access the runtime configuration of another plugin, from this MOJO. What is the best way to do this?
| ||||
|
feedback
|
|
Using properties is certainly one way to go, however not ideal. It still requires a user to define the ${propertyName} in multiple places throughout the pom. I want to allow my plugin to work with no modifications to the user's pom, other than the plugin definition itself. I don't see accessing the runtime properties of another MOJO as too tight coupling. If the other MOJO is defined anywhere in the build hierarchy, I want my MOJO to respect the same configuration. My current solution is:
This has worked for the few small builds I've tested with. Including a multi-module build. | |||
|
feedback
|
|
You can get a list of plugins currently been used in the build using the following steps: First you need to get Maven to inject the current project into your mojo, you use the class variable defined below to get this.
Then you can use the following to get a list of plugins used in this build.
You can iterate though this list until you find the plugin from which you want to extract configuration. Finally, you can get the configuration as a Xpp3Dom.
Note: If your altering the other plugins configuration (rather than just extracting information), it will only remain altered for the current phase and not subsequent phases. | |||||||
feedback
|
|
I'm not sure how you would do that exactly, but it seems to me that this might not be the best design decision. If at all possible you should aim to decouple your Mojo from any other plugins out there. Instead I would recommend using custom properties to factor out any duplication in the configuration of separate plugins. You can set a custom property "foo" in your pom by using the properties section:
The property foo is now accessible anywhere in the pom by using the dollar sign + curly brace notation:
| |||
|
feedback
|