Last active
August 29, 2015 14:16
-
-
Save dschobel/3df42a038f6c6b00494b to your computer and use it in GitHub Desktop.
basic build.sbt
This file contains 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
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