On Mon, Jun 2, 2008 at 12:09 PM, Torgeir Veimo <[EMAIL PROTECTED]> wrote: > Am using maven 2.0.9. What's missing in my setup? > > Macintosh:sling torgeir$ mvn jetty:run > [INFO] Scanning for projects... > [INFO] Reactor build order:...
You cannot use mvn jetty:run in the top-level source code folder, that does not apply to the root module. You have to use "mvn clean build" there (see the warning about MAVEN_OPTS when you do that), and then you can run "mvn jetty:run" in launchpad/webapp to run the webapp. -Bertrand
