Note: Unresolved dependencies path:

I am about to add slick dependency to my project and get the following error

[warn]
[warn]  Note: Unresolved dependencies path:
[error] sbt.librarymanagement.ResolveException: Error downloading com.typesafe.play:play-slick-evolutions_2.13:4.0.0
[error]   Not found
[error]   Not found
...

I have the following in my config file

libraryDependencies ++= Seq(
  "com.typesafe.play" %% "play-slick" % "4.0.0",
  "com.typesafe.play" %% "play-slick-evolutions" % "4.0.0"
)
...

How can I go about resolving this issue?

For Scala 2.13 I would expect you need at least play-slick (evolutions) 4.0.2.

Henning

1 Like