[Lift] Re: Maven skip tests

2009-08-04 Thread Mark McBride
My guess is that while -fn tells maven never to fail, it doesn't tell it at what point in the lifecycle to finish. It's likely that the test goal failed, maven stopped (before executing the install goal) and reported a successful build. In the second case you're removing the test goal from the m

[Lift] Re: Maven skip tests

2009-08-04 Thread Naftoli Gugenheim
Thanks. Not sure why only the latter did an install. - Indrajit Raychaudhuri wrote: Telling maven to never fail: mvn -fn (NEVER fail the build, regardless of project result) Telling maven to skip test: (quite different from never failing) mvn -Dmaven.test.sk

[Lift] Re: Maven skip tests

2009-08-04 Thread Indrajit Raychaudhuri
Telling maven to never fail: mvn -fn (NEVER fail the build, regardless of project result) Telling maven to skip test: (quite different from never failing) mvn -Dmaven.test.skip=true /irc On 05/08/09 2:27 AM, Naftoli Gugenheim wrote: > > How do you tell maven to install even if tests fail? > > >