If I have multiple executions of a Maven plugin and they share at least one of the same configuration values, is there a way for me to share this configuration between all executions of the plugin.
Consider the trivial case of a build plugin with two executions:
<plugin> <!-- ID, version... --> <executions> <execution> <id>ID1</id> <configuration> <myConfig>foo</myConfig> ... </configuration> </execution> <execution> <id>ID2</id> <configuration> <myConfig>foo</myConfig> ... </configuration> </execution> </executions> </plugin> How can I rewrite this so that both the ID1 and the ID2 executions use the same value for the myConfig configuration?