Reputation: 9480
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
Reputation: 151
Use the following command for a Debian-based Linux:
sudo apt-get install sbt=0.13.13
Upvotes: 7
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