Skip to content

Instantly share code, notes, and snippets.

@BowlingX
BowlingX / build.sbt
Created November 21, 2012 13:22 — forked from meniku/build.sbt
project/plugins.sbt
========================================================
libraryDependencies <+= sbtVersion(v => v match {
case "0.11.0" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.0-0.2.8"
case "0.11.1" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.1-0.2.10"
case "0.11.2" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.2-0.2.11"
case "0.11.3" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.3-0.2.11.1"
case x if (x.startsWith("0.12")) => "com.github.siasia" %% "xsbt-web-plugin" % "0.12.0-0.2.11.1"
})
ivyXML :=
<dependencies>
<exclude org="org.eclipse.jetty.orbit" />
</dependencies>
libraryDependencies ++= Seq(
"org.scalatra" % "scalatra" % "2.1.0-SNAPSHOT",
"org.scalatra" % "scalatra-specs2" % "2.1.0-SNAPSHOT" % "test",
"ch.qos.logback" % "logback-classic" % "1.0.0" % "runtime",
"org.eclipse.jetty" % "jetty-webapp" % "8.1.4.v20120524" % "container",