On Tue, Oct 7, 2008 at 9:25 PM, Michael Hüttermann <[EMAIL PROTECTED]> wrote: > Thanks! Isn't there any way to jump into the lifecycle and prevent Maven > to deploy the packaged jar ?? Or: to prevent Maven to package the jar? >
As far as I know, the "pom" lifecycle does not have plugins bound to phases. So you could change the packaging type of the module to pom and bind the plugins you want to run explicitly. You´ll probably have to experiment a bit but I think it might work. Btw. is this jar some sort of library (in that case it is better to deploy it to a repository) or is it built by eclipse? In the latter case you should consider to let maven compile the classes and assemble the jar. This leads to more reproducible results. Henry --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
