Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: module not found: org.scala-sbt#sbt;${{sbt.version}}

I m trying to run Play application which was built by some one else.

I am getting Error: module not found: org.scala-sbt#sbt;${{sbt.version}} when running play command.

like image 232
Abhijit Gaikwad Avatar asked May 01 '13 21:05

Abhijit Gaikwad


2 Answers

Creating a project/build.properties file if one doesn't exist with the following content: sbt.version=0.12.2 resolved the issue.

like image 106
Abhijit Gaikwad Avatar answered Nov 16 '22 11:11

Abhijit Gaikwad


If the above answer doesn't help you, apparently there seem to be some problem when running the play command in the wrong place in the folder structure. The solution is described here: org.scala-sbt#sbt;${{sbt.version}}: not found on existing project

like image 40
Andreas Avatar answered Nov 16 '22 11:11

Andreas