The Scala version used by your SBT build is determined by your SBT configuration, not your Scala system. The default version of Scala for SBT 0.13 is 2.10, but you can change it with the following setting in build.sbt :
scalaVersion := "2.11.8"
The fact that the version of your SBT Scala project does not depend on your version of Scala (if any) is actually very convenient - that means you can have projects that cross-build for several Scala, which you can create projects on machines, on which Scala is not installed, etc.
Another note - it is recommended to avoid such a mismatch by using the %% syntax for Scala dependencies - for example. this is:
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.4"
Instead of this:
libraryDependencies += "com.typesafe.akka" % "akka-actor_2.11" % "2.3.4"
%% before the artifact name says: "Use this name, but suffix it with _<Scala epoch version>.<Scala major version> for any current version of Scala."
source share