Skip to content

Instantly share code, notes, and snippets.

@joegaudet
Created December 7, 2011 23:07
Show Gist options
  • Save joegaudet/1445201 to your computer and use it in GitHub Desktop.
Save joegaudet/1445201 to your computer and use it in GitHub Desktop.
object Dependencies {
val jettyVersion = "7.4.3.v20110701"
def jettyComponent(name: String) = "org.eclipse.jetty" % name % "7.4.3.v20110701" % "container"
val jetty = jettyComponent("jetty-webapp")
val jettyServlets = jettyComponent("jetty-servlets")
val jettyPlus = "org.eclipse.jetty" % "jetty-plus" % jettyVersion % "container"
val jettytester = jettyComponent("test-jetty-servlet")
val jettyContinuations = jettyComponent("jetty-continuation")
val scalatraVersion = "2.0.2"
val scalatra = "org.scalatra" %% "scalatra" % scalatraVersion
val scalatraFileUpload = "org.scalatra" %% "scalatra-fileupload" % scalatraVersion
val scalatraTest = "org.scalatra" %% "scalatra-test" % scalatraVersion
val scalatraScalaTest = "org.scalatra" %% "scalatra-scalatest" % scalatraVersion
val scalateCore = "org.fusesource.scalate" % "scalate-core" % "1.5.3"
val scalateUtil = "org.fusesource.scalate" % "scalate-util" % "1.5.3"
val junit = "junit" % "junit" % "4.8.1" % "test"
val squeryl = "org.squeryl" %% "squeryl" % "0.9.4"
val mysql = "mysql" % "mysql-connector-java" % "5.1.15"
// toolkit for extracting text from pdf, doc, html, .....
val tikaCore = "org.apache.tika" % "tika-core" % "0.9"
val tikaParsers = "org.apache.tika" % "tika-parsers" % "0.9"
// connection pools
val c3p0 = "c3p0" % "c3p0" % "0.9.1.1"
val bayeuxApi = "org.cometd.java" % "bayeux-api" % "2.2.0"
val cometdJava = "org.cometd.java" % "cometd-java-server" % "2.2.0"
val json = "net.liftweb" %% "lift-json" % "2.4-M4"
val scalatest = "org.scalatest" %% "scalatest" % "1.6.1" % "test"
val twitterUtilsCore = "com.twitter" % "util-core" % "1.10.2"
val twitterUtilsLogging = "com.twitter" % "util-logging" % "1.10.2"
val commonsCodecs = "commons-codec" % "commons-codec" % "1.5"
val commonsValidator = "commons-validator" % "commons-validator" % "1.3.0"
val akka = "se.scalablesolutions.akka" % "akka-actor" % "1.2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment