sbt 0.12 を使用して Scala で新しいプレイ アプリケーション myFirstApp を作成しようとしています。myFirstApp/ フォルダーに build.sbt を作成しました。また、plugins.sbt を myFirstApp/project/ フォルダーに追加しました。
Build.sbt
import play.Project._
name := "My first application"
version := "1.0"
playScalaSettings
plugins.sbt
// Typesafe snapshots
resolvers += "Typesafe Snapshots" at "http://repo.typesafe.com/typesafe/snapshots/"
resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
// Use the Play sbt plugin for Play projects
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.2.0-M1")
build.properties
sbt.version=0.12.3
myFirstApp フォルダーから sbt を実行すると、次のエラーが発生します。
error: not found: value playScalaSettings
どうすればそれを取り除くことができますか?