I have a multi-project containing a few subprojects.
The root project\'s project/build.properties
contains
sbt.version=0.13.0
Right now, sbt allows deep task-level dependencies between projects in the same build. So, while the projects each have their own directory, they share one classloader for their build which has all the definitions.
This places the limitation that you cannot have builds sharing incompatible versions.
Removing this restriction may be possible in the future, but for now I'd do one of the following: