How to use SBT 0.12 and 0.13 at the same time?

7

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?

    
asked by anonymous 11.12.2013 / 20:33

1 answer

5

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

    
11.12.2013 / 20:40