Re: configuring a plugin while preventing its execution

2008-07-02 Thread Kallin Nagelberg
I've noticed that using the pluginmanagment the plugin is not associated to lifecycle events by default in the children. Is there a way to make this happen so that I don't have to declare the plugin in every child? On Wed, Jul 2, 2008 at 3:22 PM, Kallin Nagelberg <[EMAIL PROTECTED]> wrote: > grea

Re: configuring a plugin while preventing its execution

2008-07-02 Thread Kallin Nagelberg
great, thanks for the help On Wed, Jul 2, 2008 at 2:21 PM, Dennis Lundberg <[EMAIL PROTECTED]> wrote: > You can put your plugin configuration in a pluginManagement [1] element > inside the build element > build >pluginManagement > plugins >plugin > > This only configures the plu

Re: configuring a plugin while preventing its execution

2008-07-02 Thread Dennis Lundberg
You can put your plugin configuration in a pluginManagement [1] element inside the build element build pluginManagement plugins plugin This only configures the plugins, but don't execute them. [1] http://maven.apache.org/ref/current/maven-model/maven.html#class_pluginManage

configuring a plugin while preventing its execution

2008-07-02 Thread Kallin Nagelberg
I'm trying to create a multi-module project that uses the same plugin for source generation. To make it as simple as possible I have a parent POM that contains the configuration of the plugin in a tag. My problem is that the plugin is being executed when the parent is buil