Skip to content

Instantly share code, notes, and snippets.

@dschobel
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dschobel/3df42a038f6c6b00494b to your computer and use it in GitHub Desktop.
Save dschobel/3df42a038f6c6b00494b to your computer and use it in GitHub Desktop.
basic build.sbt
lazy val root = (project in file(".")).
settings(
name := "My Project",
version := "1.0",
scalaVersion := "2.11.6"
)
libraryDependencies += "com.twitter" % "util-core_2.11" % "6.23.0"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.1" % "test"
//libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.12.2" % "test"
//resolvers += "twttr" at "http://maven.twttr.com/"
//libraryDependencies += "com.twitter" %% "twitter-server" % "1.9.0"
//libraryDependencies += "com.twitter" %% "finagle-stats" % "6.24.0"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment