Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install older version of sbt?

Tags:

scala

sbt

I am facing some "UNRESOLVED DEPENDENCIES" problem for my custom dependencies with latest version of sbt(0.13.8)

I want to install older version of sbt, Do we have any command by which I can install older version of sbt ?

like image 730
Anshul Avatar asked Jun 04 '15 12:06

Anshul


2 Answers

You can define the sbt version by writing the one you need in /project/build.properties

It would be something like:

sbt.version=x.xx.x
like image 149
Carlos Vilchez Avatar answered Sep 22 '22 05:09

Carlos Vilchez


Use the following command for a Debian-based Linux:

sudo apt-get install sbt=0.13.13
like image 6
Shubham Mishra Avatar answered Sep 24 '22 05:09

Shubham Mishra