Folks,

Lift snapshot artifacts built on Scala 2.7.7.RC2 are now available in
scala-tools repository.

The artifacts follow the version pattern 1.1-scala2.7.7.RC2-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.RC2-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.RC2 and set the version number of all
lift-modules to 1.1-scala2.7.7.RC2-SNAPSHOT.

You can also use Maven's project profile feature to switch Lift and
Scala between regular version and 2.7.7.RC2 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.RC2</scala.version>
       </properties>
       <dependencies>
       <dependency>
           <groupId>net.liftweb</groupId>
           <artifactId>lift-core</artifactId>
           <version>1.1-scala2.7.7.RC2-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.RC2 version

Cheers, Indrajit

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to