1

Today is my first day with Finch. I am unable to find the right set of SBT dependencies for finch and finagle.

I have tried all the dependencies as shown in Image 2

enter image description here

enter image description here

marios
  • 8,874
  • 3
  • 38
  • 62
Prateek Mane
  • 111
  • 1
  • 9

1 Answers1

3

You are using Scala 2.12 but your dependencies are for Scala 2.11.

This is the correct way to write what you need:

libraryDependencies += "com.github.finagle" %% "finch-core" % "0.13.0"

Build.scala, % and %% symbols meaning

Community
  • 1
  • 1
marios
  • 8,874
  • 3
  • 38
  • 62