RE: how to prevent from creating exploded archive?

2006-02-21 Thread Brian E. Fox
To: Maven Users List Subject: Re: how to prevent from creating exploded archive? Even if I need to conduct very trivial action, you still recommend new mojo? 2006/2/21, Alexandre Poitras <[EMAIL PROTECTED]>: > > I think the best practice would be to developp a new Mojo, wich can

Re: how to prevent from creating exploded archive?

2006-02-21 Thread Alexandre Poitras
No unless you need to do it very often or redistribuate it to other people. On 2/21/06, Szczepan Faber <[EMAIL PROTECTED]> wrote: > Even if I need to conduct very trivial action, you still recommend new mojo? > > > 2006/2/21, Alexandre Poitras <[EMAIL PROTECTED]>: > > > > I think the best practice

RE: how to prevent from creating exploded archive?

2006-02-21 Thread Brian E. Fox
Correct. Besides writing a plugin, the only other alternative is to use the ant plugin. -Original Message- From: Alexandre Poitras [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 21, 2006 2:17 PM To: Maven Users List Subject: Re: how to prevent from creating exploded archive? I

Re: how to prevent from creating exploded archive?

2006-02-21 Thread Szczepan Faber
Even if I need to conduct very trivial action, you still recommend new mojo? 2006/2/21, Alexandre Poitras <[EMAIL PROTECTED]>: > > I think the best practice would be to developp a new Mojo, wich can be > done with Ant or Java. This way you don't have to hook anything except > declare the plugin.

Re: how to prevent from creating exploded archive?

2006-02-21 Thread Alexandre Poitras
I think the best practice would be to developp a new Mojo, wich can be done with Ant or Java. This way you don't have to hook anything except declare the plugin. On 2/21/06, Szczepan Faber <[EMAIL PROTECTED]> wrote: > So everytime I need to do something extra, that is not possible to define in > p

Re: how to prevent from creating exploded archive?

2006-02-21 Thread Szczepan Faber
So everytime I need to do something extra, that is not possible to define in plugin config, the best practice is to write an ant task and hook it to maven phase? 2006/2/20, Brian E. Fox <[EMAIL PROTECTED]>: > > This exploded archive is where the war plugin assembles the war before > zipping it up.

Re: how to prevent from creating exploded archive?

2006-02-19 Thread Alexandre Poitras
I am not sure but I think what you are looking for is war:inplace although I have never tried it. http://maven.apache.org/plugins/maven-war-plugin/inplace-mojo.html On 2/19/06, Brian E. Fox <[EMAIL PROTECTED]> wrote: > This exploded archive is where the war plugin assembles the war before > zippin

RE: how to prevent from creating exploded archive?

2006-02-19 Thread Brian E. Fox
This exploded archive is where the war plugin assembles the war before zipping it up. It's just a normal product of the war creation. If you really need it gone for some reason, use the ant plugin to delete the folder in the package phase. (pom defined plugins run after the lifecycle ones so callin