Created
August 4, 2011 20:43
-
-
Save smparkes/1126209 to your computer and use it in GitHub Desktop.
build.sbt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name := "web" | |
version := "1.0" | |
scalaVersion := "2.9.0" | |
seq(webSettings :_*) | |
libraryDependencies ++= Seq( | |
"org.scalatra" %% "scalatra" % "2.0.0-SNAPSHOT", | |
"org.scalatra" %% "scalatra-scalate" % "2.0.0-SNAPSHOT", | |
"org.mortbay.jetty" % "jetty" % "6.1.22" % "jetty", | |
"javax.servlet" % "servlet-api" % "2.5" % "provided->default" | |
) | |
fork in run := true | |
// needed for the scalatra snapshots | |
resolvers ++= Seq( | |
"Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment