Skip to content

Instantly share code, notes, and snippets.

@ryanoneill
Created April 9, 2012 04:24
Show Gist options
  • Save ryanoneill/2341416 to your computer and use it in GitHub Desktop.
Save ryanoneill/2341416 to your computer and use it in GitHub Desktop.
Very Simple Build.sbt File for Lift on Heroku
import com.typesafe.startscript.StartScriptPlugin
name := "Lift Hello World"
seq(StartScriptPlugin.startScriptForClassesSettings: _*)
libraryDependencies ++= {
Seq(
"org.eclipse.jetty" % "jetty-server" % "7.5.4.v20111024" % "compile->default",
"org.eclipse.jetty" % "jetty-servlet" % "7.5.4.v20111024" % "compile->default",
"javax.servlet" % "servlet-api" % "2.5" % "provided->default",
"net.liftweb" %% "lift-webkit" % "2.4" % "compile->default",
"ch.qos.logback" % "logback-classic" % "1.0.1" % "compile->default"
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment