I have SBT 0.12 installed on my computer, with several global plugins, but I have seen several projects that are already using SBT 0.13
. How can I make both on my machine at the same time, without conflicts?
I have SBT 0.12 installed on my computer, with several global plugins, but I have seen several projects that are already using SBT 0.13
. How can I make both on my machine at the same time, without conflicts?
In the file project/build.properties
you can add a line with the version of sbt you want.
sbt.version=0.12.0
So you can install the latest version of sbt but keep the compatibility of projects that use an older version.
Source: Hello, Word - sbt Documentation