[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

[Lift] Re: Odd XML parsing issue

2009-07-30 Thread Mark McBride
URLs in XML need to be XML Encoded... so try a href=http://www.yahoo.com?a=4amp;b=5;Test/a ---Mark On Thu, Jul 30, 2009 at 10:53 AM, Ewanehar...@gmail.com wrote: Not sure what I have messed up here but if I have a hardcoded link in a template page where the href includes query params the

[Lift] Re: Odd XML parsing issue

2009-07-30 Thread Mark McBride
Fat fingered the paste... change to amp; On Thu, Jul 30, 2009 at 11:15 AM, Ewanehar...@gmail.com wrote: But that looks exactly like I have it... On Jul 30, 7:02 pm, Mark McBride mark.mcbr...@gmail.com wrote: URLs in XML need to be XML Encoded... so try a href=http://www.yahoo.com?a=4b=5

[Lift] Re: scala+maven

2009-07-29 Thread Mark McBride
I distilled at least two questions from this 1) How do I use scala artifacts from a private remote repository (i.e. I don't need to go outside my own network to download artifacts)? 2) How do I define the scala repositories in settings.xml instead of in every pom.xml file? We actually do