Unresolved dependency with specs2 scalaz-stream 0.5a
Asked Answered
S

1

5

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
Saleable answered 13/1, 2015 at 13:23 Comment(0)
P
10

Adding Scalaz repository should help

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

upd use https

Predictory answered 13/1, 2015 at 16:13 Comment(1)
You should never ever ever set "scalaz-bintray" at "dl.bintray.com/scalaz/releases" in your build. It opens you up to cross build injection attacks. Only use https to add a repository to your build.Jurisdiction

© 2022 - 2024 — McMap. All rights reserved.