Prateek Mane
Prateek Mane

Reputation: 111

Unable to find the correct SBT dependency

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

Upvotes: 1

Views: 179

Answers (1)

marios
marios

Reputation: 8996

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

Upvotes: 3

Related Questions