MartinAhrer wrote: > > I have a parent POM using the <pluginManagement> element for configuring > plugins for sub modules. The plugin configuration contains instructions > for which goals to execute. >
Maven doesn't support to remove elements from parent POMs, you can only extend it in sub-modules. Therefore, you should only put common things into the parent POM. In your case, how about creating a second sub-module/project which prepares the FTP site? Then, you can define the order in which the sub-modules are executed in your parent POM to make sure the FTP site is ready before the other sub-module wants to access it. -- View this message in context: http://www.nabble.com/How-to-disable-a-goal-tf2742921s177.html#a7673065 Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
