I created a new play project with the new "activator", and my build.sbs looks like this:
name := """AppTest"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.11.1"
libraryDependencies ++= Seq(
javaJdbc,
javaEbean,
cache,
javaWs,
"com.typesafe" %% "play-plugins-redis" % "2.1.1",
"commons-beanutils" % "commons-beanutils" % "1.8.3",
"postgresql" % "postgresql" % "9.1-901.jdbc4",
"mysql" % "mysql-connector-java" % "5.1.23",
"com.amazonaws" % "aws-java-sdk" % "1.3.30",
"org.apache.commons" % "commons-email" % "1.3",
//"com.google.http-client" % "google-http-client" % "1.15.0-rc",
"us.monoid.web" % "resty" % "0.3.2",
"com.ning" % "async-http-client" % "1.7.16",
"com.googlecode.libphonenumber" % "libphonenumber" % "5.9",
"com.urbanairship" % "java-client" % "0.2.1",
"joda-time" % "joda-time" % "2.3"
)
If I remove "com.typesafe" %% "play-plugins-redis" % "2.1.1" then everything compiles without problem, this dependencies don't produce problems with play version 2.2, why is there a problem with play 2.3?