How do I set up hotdeploy for Scala/Lift projects in Eclipse?
Basically, I would like to be able to
The tutorial at http://wiki.liftweb.net/index.php/Using_eclipse_hotdeploy is out-dated and I really can't figure out how to set this up.
I currently have
Should I use any other versions or plugins?
With SBT it's possible to continuously recompile and reload the web application when using Jetty:
jetty-run
~ prepare-webapp
jetty-run
starts Jetty and the ~ prepare-webapp
recompiles and recreates the web application whenever sources files change.
SBT is compatIble with Maven and Ivy, so you may generate the project file layout with Maven archetypes, and switch to SBT later - it will recognize repositories and dependencies specified in the POM.
This tutorial video shows, how to get stated with SBT and Eclipse.