Is it possible to install multiple versions side-by-side with Homebrew?
I find myself in a situation needing sbt-0.7.x, sbt-0.10.x and sbt-0.11.0. I\'ve installed both s
To easily switch between versions of formulae, you can use:
brew switch
For example:
brew switch gradle 3.2.1
To list which versions you have installed try:
brew list --versions
or:
If you want to get rid of older versions, just use:
brew cleanup