Re: Installer Scripts Best Practice

2007-07-13 Thread Steven Rowe
Hi Rodrigo, On 7/13/07, Rodrigo Madera <[EMAIL PROTECTED]> wrote: > Is using Ant scripts really acceptable from a Maven good-practice point of > view? maven-antrun-plugin tasks are the conventional means for moving files around, mostly because Maven 2 does not provide a generalized facility for

RE: Installer Scripts Best Practice

2007-07-13 Thread EJ Ciramella
about assembly:single and assembly:directory-inline either) -Original Message- From: Rodrigo Madera [mailto:[EMAIL PROTECTED] Sent: Friday, July 13, 2007 2:31 PM To: Maven Users List Subject: Re: Installer Scripts Best Practice Actually I do use the Assembly Plugin to generate a

Re: Installer Scripts Best Practice

2007-07-13 Thread Rodrigo Madera
[EMAIL PROTECTED] Sent: Friday, July 13, 2007 11:01 AM To: Maven Users List Subject: Re: Installer Scripts Best Practice Hi Rogrigo, Rodrigo Madera wrote: > I was wondering if anyone has a suggestion on the best practice to > execute post-build scripts, such as copying output files to a > tem

RE: Installer Scripts Best Practice

2007-07-13 Thread EJ Ciramella
Why not set up an assembly and use assembly:directory to do this? -Original Message- From: Steven Rowe [mailto:[EMAIL PROTECTED] Sent: Friday, July 13, 2007 11:01 AM To: Maven Users List Subject: Re: Installer Scripts Best Practice Hi Rogrigo, Rodrigo Madera wrote: > I was wonder

Re: Installer Scripts Best Practice

2007-07-13 Thread Steven Rowe
Hi Rogrigo, Rodrigo Madera wrote: > I was wondering if anyone has a suggestion on the best practice to > execute post-build scripts, such as copying output files to a > template directory for installer generation. > > Right now I'm using a shell script to do the copying and calling my > installer-

Installer Scripts Best Practice

2007-07-12 Thread Rodrigo Madera
Hello all, I was wondering if anyone has a suggestion on the best practice to execute post-build scripts, such as copying output files to a template directory for installer generation. Right now I'm using a shell script to do the copying and calling my installer-generating scripts, but I'm sure