Hi everyone,
I'd like to be able to configure the default execution of a plugin within an
execution instead of doing it through the main plugin configuration. So the
result would look something like this:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default</id>
<configuration>
<includes>
<include>stuff/**</include>
</includes>
</configuration>
</execution>
<execution>
<id>custom</id>
<configuration>
<includes>
<include>other-stuff/**</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
Currently, it seems the only way to configure the default jar plugin execution
is to use the main plugin configuration section. This doesn't work as well
because it ends up applying the config to all executions, which is not always
what is needed.
Benjamin pointed me to the MojoExceution constructor which sets the id to null,
and PluginExecution from the model which sets the id to "default". This
difference seems to be why the default executions can't be overridden in an
execution config.
Any thoughts? I'll create a jira issue with a patch for this, but I'll wait for
feedback before changing anything.
Thanks!
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]