1

I'm trying to use finagle in a Scala project and I'm wondering if there's a Maven repository out there which has the jars. I want to add it as a dependency and rather not compile all the stuff locally.

Kim Stebel
  • 41,826
  • 12
  • 125
  • 142
janschaf
  • 123
  • 5

2 Answers2

2

from http://twitter.github.com/finagle/

Note: Maven Artifacts are published to the public twitter maven repo at http://maven.twttr.com.

Kim Stebel
  • 41,826
  • 12
  • 125
  • 142
  • The latest version in the public twitter maven repo is 3.0.1 -- see http://maven.twttr.com/com/twitter/finagle/3.0.1/ – janschaf Aug 08 '12 at 10:58
2

Here is an example build.sbt file for one of my projects which uses Finagle 5.0.0:

https://github.com/cb372/finagle-beanstalk/blob/d2ac139999fd49a6dc4fcd6e1097b07da234b408/build.sbt

Basically you need:

resolvers += "Twitter Maven repo" at "http://maven.twttr.com/"

libraryDependencies += "com.twitter" % "finagle-core" % "5.0.0"

When I checked a few days ago, the latest version of finagle-core available in the Maven repo was 5.3.1, so you should probably use that.

Chris B
  • 9,149
  • 4
  • 32
  • 38