Anshul
Anshul

Reputation: 9480

How to install older version of 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 ?

Upvotes: 11

Views: 12384

Answers (2)

Shubham Mishra
Shubham Mishra

Reputation: 151

Use the following command for a Debian-based Linux:

sudo apt-get install sbt=0.13.13

Upvotes: 7

Carlos Vilchez
Carlos Vilchez

Reputation: 2804

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

Upvotes: 11

Related Questions