Looking through the Scala bindings for Redis , I followed the instructions in the README file (cloned the repo, cd into it, type sbt
), and I got the following:
$ sbt Getting org.scala-tools.sbt sbt_2.9.1 0.10.1 ... :: problems summary :: :::: WARNINGS module not found: org.scala-tools.sbt
This used sbt 0.7.4. I tried downloading the latest version of sbt (0.11.0) and I have the same problem. Then I manually downloaded sbt-launcher.jar
from 0.10.1 sbt release and it worked.
My question is: should sbt automatically download the correct version of itself, or will I have to manually download and run different versions of sbt for packages that require different versions?
Noah source share