[Lift] Re: maven plugin - scala:console - how to for lift apps - debugging aid

2008-12-10 Thread TylerWeir
What are you attempting? if you run: import com.your.classpath.model._ You should be able to create and play with model objects. What are you looking to do? On Dec 10, 1:39 pm, Dano [EMAIL PROTECTED] wrote: Hello Lifters, I am looking into using the maven scala:console plugin as an aid to

[Lift] Re: maven plugin - scala:console - how to for lift apps - debugging aid

2008-12-10 Thread Dano
Hi Tyler! I am trying to run my lift app which I usually do by issuing 'mvn jetty:run'. I believe this runs the class org.codehause.classworlds.Launcher with the arguments - Dclassworlds.conf=/usr/local/apache-maven/apache-maven-2.0.9/bin/ m2.conf

[Lift] Re: maven plugin - scala:console - how to for lift apps - debugging aid

2008-12-10 Thread Josh Suereth
Typo in codehause, it should be org.codehaus.classworlds.Launcher. On Wed, Dec 10, 2008 at 2:36 PM, Dano [EMAIL PROTECTED] wrote: Hi Tyler! I am trying to run my lift app which I usually do by issuing 'mvn jetty:run'. I believe this runs the class org.codehause.classworlds.Launcher with

[Lift] Re: maven plugin - scala:console - how to for lift apps - debugging aid

2008-12-10 Thread Dano
Ok. I got the app to run by adding 'jetty:run' as an argument after the Launcher class. However, the interpreter does not return to the command prompt I stop it using ctrl-C. Maybe I need to spawn a thread with the expression 'MainGenericRunner.main(args)'. Dan On Dec 10, 3:28 pm, Dano