How to instruct Maven to run more than one script?

2008-05-02 Thread Tawfik, Sameh E

Hi,

I've two Perl scripts, "Before_Build.pl", and "After_Build.pl " that I
need to run the first one before the build starts and the other one
after the build is complete.

So, what is the command line syntax to run a full build with the above
requirements?

I've the following code in my pom.xml:

 
   org.codehaus.mojo
   exec-maven-plugin
   
 
   
 exec
   
 
   
   false
   
 Before_Build.pl
 
   20
 
   
 

 
   org.codehaus.mojo
   exec-maven-plugin
   
 
   
 exec
   
 
   
   false
   
 After_Build.pl
 
   20
 
   
 

I can successfully execute the first Perl script "Before_Build.pl" from
the command line, by running the following command:
  
  C:\projects>mvn -N exec:exec -Dexec.executable=" Before_Build.pl"


   Thanks,

 Sameh
This email and any files transmitted with it are confidential, proprietary
and intended solely for the individual or entity to whom they are addressed.
If you have received this email in error please delete it immediately.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: How to instruct Maven to run more than one script?

2008-05-10 Thread Jerome Lacoste
On Sat, May 3, 2008 at 2:20 AM, Tawfik, Sameh E
<[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I've two Perl scripts, "Before_Build.pl", and "After_Build.pl " that I
> need to run the first one before the build starts and the other one
> after the build is complete.
>
> So, what is the command line syntax to run a full build with the above
> requirements?

Extract from the soon to be published FAQ of the exec mojo:

Q: How to execute the plugin multiple times ?

Use several execution nodes each with a different id. Don't forget
to bind each execution to a phase.

Read the full answer here:
http://article.gmane.org/gmane.comp.java.maven-plugins.mojo.user/1307




> I've the following code in my pom.xml:
>
> 
>   org.codehaus.mojo
>   exec-maven-plugin
>   
> 
>   
> exec
>   
> 
>   
>   false
>   
> Before_Build.pl
> 
>   20
> 
>   
> 
>
> 
>   org.codehaus.mojo
>   exec-maven-plugin
>   
> 
>   
> exec
>   
> 
>   
>   false
>   
> After_Build.pl
> 
>   20
> 
>   
> 
>
> I can successfully execute the first Perl script "Before_Build.pl" from
> the command line, by running the following command:
>
>  C:\projects>mvn -N exec:exec -Dexec.executable=" Before_Build.pl"
>
>
>   Thanks,
>
> Sameh
> This email and any files transmitted with it are confidential, proprietary
> and intended solely for the individual or entity to whom they are addressed.
> If you have received this email in error please delete it immediately.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-- 
Jerome Lacoste, +47 40867729, Daglig Leder, CoffeeBreaks AS

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]