Re: SQL scripts in webapp

2006-12-12 Thread Rahul Thakur
How are you deploying the app to a geronimo instance (Cargo Maven plugin?) You can use a profile and nest your plugin's configuration therein and invoke the profile using '-P profileName' when you want to invoke the deploy goal (I am assuming you are using Cargo for deployment). HTH, Rahul

Re: SQL scripts in webapp

2006-12-12 Thread Phillip Rhodes
I dealt with this one too. I had to take a step back. Maven is great for building/compiling code, but it is not an platform for execution. My problem went away when I decided to use maven to package/build my projects and left sql/data migration programs/etc/ to ant scripts. Just my 2 cents.

RE: SQL scripts in webapp

2006-12-12 Thread Ryan Slobojan
-based database build process which is integrated into Maven's build lifecycle. Thanks, Ryan Slobojan -Original Message- From: Phillip Rhodes [mailto:[EMAIL PROTECTED] Sent: Tue 12/12/2006 7:11 PM To: Maven Users List Subject: Re: SQL scripts in webapp I dealt with this one too. I had