Jordan Sitkin
Jordan Sitkin

Reputation: 2343

How can I manage multiple versions of Scala & SBT in my dev environment?

I just finished the awesome Coursera Scala course and am eager to continue learning more about Scala by exploring some existing open source projects. I've hit a snag while trying to get some of them running locally, though.

I come from a background in Ruby, where we use tools such as rvm or rbenv to manage multiple Ruby interpreters/versions on one system. What is the approach that Scala users take for working with projects that use different versions of Scala/SBT?

I suspect that I'm missing something big since this doesn't seem to be a popular issue.

Please note that I'm pretty new to the world of Java and the JVM in general.

Upvotes: 9

Views: 6439

Answers (3)

VonC
VonC

Reputation: 1323045

More recently (Dec. 2016), you can try and check out sdkman.io, The Software Development Kit Manager.

It is a tool for managing parallel versions of multiple Software Development Kits on most Unix based systems. It provides a convenient Command Line Interface (CLI) and API for installing, switching, removing and listing Candidates.

It installs Software Development Kits for the JVM such as Java, Groovy, Scala, Kotlin and Ceylon. Activator, Ant, Gradle, Grails, Maven, SBT, Spring Boot, Vert.x and many others also supported.

Upvotes: 3

akauppi
akauppi

Reputation: 18036

I always use the latest sbt from Homebrew (OS X) and then control the Scala version and libraries from within the build.sbt.

Upvotes: 4

Paul Butcher
Paul Butcher

Reputation: 10852

I suggest you take a look at paulp's excellent sbt-extras script. This will enable you to pick which version of sbt you want to use on a per-project basis, and sbt will allow you to pick which version(s) of Scala you want on a per-project basis.

Upvotes: 9

Related Questions