I tried to update my play 2.2 app and therefore my build.scale to a build.sbt.
That's my try to convert it to a build.sbt:
name := "betting_game"
version := "1.0-SNAPSHOT"
libraryDependencies ++= Seq(
javaCore, javaJdbc, javaEbean, javaJpa, cache,
"com.typesafe" %% "play-plugins-mailer" % "2.1-RC2",
"postgresql" % "postgresql" % "9.1-901-1.jdbc4",
jacoco.settings:_*
)
parallelExecution in jacoco.Config := false
lazy val root = (project in file(".")).enablePlugins(PlayJava)
Unfortunately, I always get this error:
build.sbt:14: error: not found: value PlayJava
lazy val root = (project in file(".")).enablePlugins(PlayJava)
^
I tried to google, but I didn't find anything helpful.