zindarod
zindarod

Reputation: 6468

Is every Scala project targeted at a particular sbt version?

I am trying to solve this problem that I am facing. I have sbt version 0.12.2 installed on my laptop but every time I go to my scala assignment folder and start sbt from command prompt it automatically tries to download sbt 0.12.1. I gathered from the

build.sbt

file that the project is targeted at scala version 2.10.1 but I couldn't find anything on the sbt version. My question is: Is there such a thing as sbt target version? If there is how and where can I modify it?

Note: I can provide the build.sbt file if it helps in solving this problem.

Upvotes: 3

Views: 114

Answers (1)

Brian Smith
Brian Smith

Reputation: 3381

Usually the version of SBT used by a project is specified in a properties file.

Try looking in project/build.properties.

See the "Getting Started" guide here.

Upvotes: 4

Related Questions