Currently sbt-0.11.3-build-0100 is available (http://apt.typesafe.com/pool/pool/main/s/sbt/), so you can just update it to solve your problem. If this does not work, or if you are curious about the original problem, here is my diagnosis.
As you tried, you need to use the new launcher for SBT 0.11.3 to use the new group identifier, org.scala-sbt
. The second error message still shows a failure that refers to org.scala-tools.sbt
- this is bad, and assumes that you are actually still using the old launcher.
Could you make sure that when you run sbt
you are running the created script, and not the one from the Debian package? Try using the full path to run sbt, for example ~/bin/sbt
.
If this helps, you should fix PATH so that ~/bin
(or wherever you install your script) comes before the directory where the SBT system is installed, which (I would say, but this is an opinion question) is generally useful .
source share