https://scalaz.github.io says: > Getting started > > Include Scalaz in your project by adding the following to your build.sbt: > > libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.3.0-SNAPSHOT" I did added this line to my `build.sbt`, and hit this problem https://github.com/scalaz/scalaz/issues/2036 The comment at https://github.com/scalaz/scalaz/issues/2036#issuecomment-457955973 resolved it for me (I opened https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.12 in a browser and saw `M32` is the latest milestone, so I used that and it worked) This was a bit off-putting to me, as a newcomer to Scala, as I ended up digging around in `sbt` config files, etc. before finding that simple fix.
https://scalaz.github.io says:
I did added this line to my
build.sbt, and hit this problem scalaz/scalaz#2036The comment at scalaz/scalaz#2036 (comment) resolved it for me (I opened https://repo1.maven.org/maven2/org/scalaz/scalaz-core_2.12 in a browser and saw
M32is the latest milestone, so I used that and it worked)This was a bit off-putting to me, as a newcomer to Scala, as I ended up digging around in
sbtconfig files, etc. before finding that simple fix.