Skip to content

Instantly share code, notes, and snippets.

@kmizu
Created May 19, 2012 00:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save kmizu/2728369 to your computer and use it in GitHub Desktop.
Save kmizu/2728369 to your computer and use it in GitHub Desktop.
Code snippet of build.sbt for Finagle 4.0.2 in Scala 2.9.1
resolvers += "twitter-repo" at "http://maven.twttr.com"
libraryDependencies ++= Seq(
"com.twitter" % "finagle-core_2.9.1" % "4.0.2",
"com.twitter" % "finagle-http_2.9.1" % "4.0.2",
"com.twitter" % "finagle-stream_2.9.1" % "4.0.2"
)
@kmizu
Copy link
Author

kmizu commented May 19, 2012

Finagle 4.0.2 を Scala 2.9.1で使うために必要な設定。httpとかstreamは必ずしも必要ではないですが、coreは必ず必要。
あとは、 http://maven.twttr.com/com/twitter/ ら辺を参照すれば自力で色々見つけられます :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment