[Lift] Re: Question about the Getting Started Guide

2009-10-10 Thread David Bernard
run mvn jetty:run -U (-U is required the first time you use this plugin if no version of the plugin is define in the pom.xml) See http://wiki.github.com/dpp/liftweb/about-maven-mini-guide /davidB On Wed, Sep 30, 2009 at 03:11, jlist9 wrote: > > Hi, > > I'm new to Lift. I'm trying to follow the

[Lift] Re: Question about the Getting Started Guide

2009-10-10 Thread oatkinson
I went to the location specified and only found a pom with the following contents: http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http:// www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http:// maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.mortb

[Lift] Re: Question about the Getting Started Guide

2009-10-10 Thread oatkinson
I think I know what is happening. The maven-jetty-plugin has been moved. It is now the jetty-maven-plugin. I reran the archetype:generate with a new artifactId and before running the mvn jetty:run I edited the pom to contain the following: org.mortbay.jetty jetty-maven-p

[Lift] Re: Question about the Getting Started Guide

2009-10-10 Thread oatkinson
I reran the archetype:generate in a new artifactId and before I tried to mvn jetty:run, I edited the pom that was generated to use the new name of the plugin and all worked. org.mortbay.jetty jetty-maven-plugin / 5 is the corre

[Lift] Re: Question about the Getting Started Guide

2009-10-09 Thread oatkinson
I was getting the same problem last week. Now this week i am getting something similar that i am wondering if it is because of a proxy: 17:26:40 atkinso...@atkinsonos-laptop:~/personal/hg/lift-experiment2$ mvn jetty:run [INFO] Scanning for projects... Downloading: http://mvn.onemodel.org:8082/ne

[Lift] Re: Question about the Getting Started Guide

2009-09-30 Thread Derek Chen-Becker
I learned it the hard way when my incremental backups went from 1-2MB to 700MB :P On Wed, Sep 30, 2009 at 7:44 AM, Indrajit Raychaudhuri wrote: > > Derek, > > Very nice trick indeed! > > Cheers, Indrajit > > > On 30/09/09 6:28 PM, Derek Chen-Becker wrote: > > If you want it stored somewhere else,

[Lift] Re: Question about the Getting Started Guide

2009-09-30 Thread Indrajit Raychaudhuri
Derek, Very nice trick indeed! Cheers, Indrajit On 30/09/09 6:28 PM, Derek Chen-Becker wrote: > If you want it stored somewhere else, you can edit your > ~/.m2/settings.xml file and add the localRepository element. Here's mine: > > http://maven.apache.org/POM/4.0.0"; >xmlns:xsi="http://www

[Lift] Re: Question about the Getting Started Guide

2009-09-30 Thread Derek Chen-Becker
If you want it stored somewhere else, you can edit your ~/.m2/settings.xml file and add the localRepository element. Here's mine: http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0

[Lift] Re: Question about the Getting Started Guide

2009-09-30 Thread Chris Lewis
Maven stores artifacts in your local repository, which by default is in ~/.m2/repository. jli...@gmail.com wrote: > Hello Indrajit and those who replied, thanks for all your help. > Finally I got it working. It probably had something to do with > the proxy in my work environment. > > BTW, do yo

[Lift] Re: Question about the Getting Started Guide

2009-09-30 Thread yk
Right on there, Indrajit. I was playing with liftweb examples from http://github.com/dpp/liftweb/tree/dpp_wip_actorize and ran into similar hiccup. On Sep 30, 1:49 pm, Indrajit Raychaudhuri wrote: > Jack, > > maven-jetty-plugin belongs to the group org.mortbay.jetty, not > org.apache.maven.plugi

[Lift] Re: Question about the Getting Started Guide

2009-09-30 Thread jlist9
Hello Indrajit and those who replied, thanks for all your help. Finally I got it working. It probably had something to do with the proxy in my work environment. BTW, do you know where maven stores those downloaded files? Tuesday, September 29, 2009, 10:49:20 PM, you wrote: > Jack, > maven-jet

[Lift] Re: Question about the Getting Started Guide

2009-09-30 Thread Indrajit Raychaudhuri
Great! The downloaded files are stored in ${user.home}/.m2/repository. ${user.home} is the standard Java environment variable that defaults to $HOME in *nix and $USERPROFILE in Windows. [1] Setting proxies and other environment stuff can be done via settings: http://maven.apache.org/settings.h

[Lift] Re: Question about the Getting Started Guide

2009-09-29 Thread Indrajit Raychaudhuri
Jack, maven-jetty-plugin belongs to the group org.mortbay.jetty, not org.apache.maven.plugins. This makes me suspect that your jetty plugin isn't configured properly. A minimal jetty plugin configuration would look like this: org.mortbay.jetty maven-jetty-plugin

[Lift] Re: Question about the Getting Started Guide

2009-09-29 Thread jlist9
I just tried it on another computer and got exactly the same error when running (below). I think something is broken. I checked the mvn output in the first run to create helloworld project and didn't see any mentioning of jetty... D:\Java\liftweb\work>mvn jetty:run [INFO] Scanning for projects...

[Lift] Re: Question about the Getting Started Guide

2009-09-29 Thread Naftoli Gugenheim
I had such an issue when it was confused about which version of Jetty. Is there any more detail? Try running with error details enabled (mvn -help should tell you how). - jlist9 wrote: Yes, I have a network connection. Maven downloaded some other components

[Lift] Re: Question about the Getting Started Guide

2009-09-29 Thread jlist9
Yes, I have a network connection. Maven downloaded some other components and the end result was BUILD SUCCESSFUL... On Tue, Sep 29, 2009 at 8:29 PM, Naftoli Gugenheim wrote: > > Do you have a network connection? The idea of maven is that it > downloads whatever it's missing. > > On Tue, Sep 29,

[Lift] Re: Question about the Getting Started Guide

2009-09-29 Thread Naftoli Gugenheim
Do you have a network connection? The idea of maven is that it downloads whatever it's missing. On Tue, Sep 29, 2009 at 9:11 PM, jlist9 wrote: > > Hi, > > I'm new to Lift. I'm trying to follow the getting started guide to > build the first simple > demo.helloworld project. At the end of Maven co