Skip to content

Instantly share code, notes, and snippets.

@gkojax
Created July 13, 2012 03:35
Show Gist options
  • Save gkojax/3102549 to your computer and use it in GitHub Desktop.
Save gkojax/3102549 to your computer and use it in GitHub Desktop.
import com.twitter.sbt._
organization := "com.example"
name := "Finagle Http Project"
version := "0.1.0"
scalaVersion := "2.9.2"
resolvers += "twitter-repo" at "http://maven.twttr.com"
libraryDependencies ++= Seq(
"com.twitter" % "finagle-core" % "latest.integration"
,"com.twitter" % "finagle-http" % "latest.integration"
,"com.twitter" % "util-eval" % "latest.integration"
,"org.specs2" %% "specs2" % "latest.integration" % "test"
,"org.mockito" % "mockito-all" % "latest.integration" % "test"
)
scalacOptions += "-deprecation"
parallelExecution in Test := false
seq(StandardProject.newSettings: _*)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment