Folks, Lift snapshot artifacts built on Scala 2.7.7.RC1 are now available in scala-tools repository.
The artifacts follow the version pattern 1.1-scala2.7.7.RC1-SNAPSHOT. So they are all available in the usual snapshot repository location (http://scala-tools.org/repo-snapshots) as lift-<module>-1.1-scala2.7.7.RC1-SNAPSHOT. To try out the new version in your project, all that you'd need to do is change scala.version to 2.7.7.RC1 and set the version number of all lift-modules to 1.1-scala2.7.7.RC1-SNAPSHOT. You can also use Maven's project profile feature to switch Lift and Scala between regular version and 2.7.7.RC1 version. One way to do this would be to add a project profile section in your pom.xml as thus: <!-- ... --> <!-- ... --> <profiles> <profile> <id>scala277</id> <properties> <scala.version>2.7.7.RC1</scala.version> </properties> <dependencies> <dependency> <groupId>net.liftweb</groupId> <artifactId>lift-core</artifactId> <version>1.1-scala2.7.7.RC1-SNAPSHOT</version> </dependency> </dependencies> </profile> </profiles> <!-- ... --> </project> With this section in place in your project pom, - Run "mvn clean install" for scala-2.7.5 version - Run "mvn -Pscala277 clean install" for scala-2.7.7.RC1 version Cheers, Indrajit NB: Thanks David for fixing the version typo that I wrongly committed! On 03/10/09 3:57 AM, David Pollak wrote: > Folks, > > I have pushed a branch of Lift that compiles against Scala 2.7.7.RC1 to > the Lift repository (dpp_wip_277). > > Indrajit, please do Hudson magic such that there are Maven artifacts > that people can test against and send out changes that people will need > to make to their pom.xml file to test against the 2.7.7.RC1 build of Lift. > > I found no source incompatibilities, so your code should 'just work.' > But, please report any unexpected (i.e., different than Lift running > against Scala 2.7.5) behaviors to this list. We'll reproduce and > determine if the issue is in Lift (we'll update Lift) or in 2.7.7.RC1 > (we'll post to the Scala list/trac). > > Thanks, > > David > > -- > Lift, the simply functional web framework http://liftweb.net > Beginning Scala http://www.apress.com/book/view/1430219890 > Follow me: http://twitter.com/dpp > Surf the harmonics > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~----------~----~----~----~------~----~------~--~---
