So I'm still getting to grips with Play 2.4 I wanted to use Deadbolt for authentication but it doesn't seem to be resolving any of the deadbolt classes.
In my build.sbt,
libraryDependencies ++= Seq(
javaJdbc,
cache,
javaWs,
"be.objectify" %% "deadbolt-java" % "2.4.4"
)
In my play.plugins,
10000:be.objectify.deadbolt.java.DeadboltPlugin
In my application.conf,
deadbolt.java.handler=security.LoginHandler
The LoginHandler class,
package security;
import be.objectify.deadbolt.java.DeadboltHandler; //does not resolve
public class LoginHandler implements DeadboltHandler {
}
It's not resolving any of the deadbolt packages.