Version 3, last updated by jeppenejsum at 19 Jan 19:18 UTC
Testing and Development against SNAPSHOT
You sometimes want to test a fix for a ticket, or use it in development while waiting for the next milestone or release candidate.
Here are a few tips on getting you started:
- Clone the git repository at github using git pull <…>
- Change to the branch that contains the fix, git branch fixed_branch_name
- Assuming this is the first time do a
./liftsh update clean deliver publish-local
from the framework directory; This may take some time…. (more details on building Lift are here Building_Lift) - In your SBT project file, add this line at the top:
val mavenLocal = "Local Maven Repository" at "file://"+Path.userHome+"/.m2/repository" - In your SBT project file, change the liftVersion to 2.X-SNAPSHOT
- Also in you SBT project file, uncomment the line // val scalatoolsSnapshot = ScalaToolsSnapshots
Finally, in your project directory, do an sbt update, and start testing/developing.