Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unresolved dependency with specs2 scalaz-stream 0.5a

Since adding:

"org.specs2" %% "specs2" % "2.4.15" % "test" withSources() withJavadoc(),

To my build file I get

[warn]  Note: Unresolved dependencies path:
[warn]      org.scalaz.stream:scalaz-stream_2.10:0.5a
[warn]        +- org.specs2:specs2_2.10:2.4.15
...
[error] (*:update) sbt.ResolveException: unresolved dependency: org.scalaz.stream#scalaz-stream_2.10;0.5a: not found
like image 205
samthebest Avatar asked Jan 13 '15 13:01

samthebest


1 Answers

Adding Scalaz repository should help

resolvers += "Scalaz Bintray Repo" at "https://dl.bintray.com/scalaz/releases"

upd use https

like image 146
Eugene Zhulenev Avatar answered Sep 20 '22 11:09

Eugene Zhulenev