Created
October 4, 2012 17:05
-
-
Save felipehummel/3834984 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
organization := "com.busk" | |
name := "SearchServer" | |
version := "0.1.0-SNAPSHOT" | |
scalaVersion := "2.9.1" | |
seq(webSettings :_*) | |
classpathTypes ~= (_ + "orbit") | |
libraryDependencies ++= Seq( | |
"org.scalatra" % "scalatra" % "2.1.1", | |
"org.scalatra" % "scalatra-scalate" % "2.1.1", | |
"org.scalatra" % "scalatra-specs2" % "2.1.1" % "test", | |
"ch.qos.logback" % "logback-classic" % "1.0.6" % "runtime", | |
"org.eclipse.jetty" % "jetty-webapp" % "8.1.7.v20120910" % "container", | |
"org.eclipse.jetty.orbit" % "javax.servlet" % "3.0.0.v201112011016" % "container;provided;test" artifacts (Artifact("javax.servlet", "jar", "jar")) | |
) | |
libraryDependencies += "org.elasticsearch" % "elasticsearch" % "0.19.8" % "compile" | |
libraryDependencies += "net.liftweb" %% "lift-json" % "2.4" | |
resolvers += "Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/" | |
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.6.4" | |
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.0.0" | |
libraryDependencies += "ch.qos.logback" % "logback-core" % "1.0.0" | |
libraryDependencies += "com.weiglewilczek.slf4s" %% "slf4s" % "1.0.7" | |
libraryDependencies += "org.codehaus.groovy" % "groovy" % "1.8.6" | |
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/" | |
libraryDependencies += "com.twitter" % "querulous" % "2.7.6" | |
libraryDependencies += "net.debasishg" % "redisclient_2.9.1" % "2.5" | |
libraryDependencies += "com.google.guava" % "guava" % "12.0" | |
fork in run := true | |
javaOptions in run += "-Xmx4G" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment