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

I am trying to launch a Play application that was created by someone else.

I get Error: module not found: org.scala-sbt#sbt;${{sbt.version}}when I execute a play command.

+5
source share
2 answers

Creating a file project/build.propertiesif it does not exist with the following contents: sbt.version=0.12.2resolved the problem.

+8
source

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

+1
source

All Articles