forked from t2v/play2-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Manabu Nakamura edited this page May 11, 2013
·
6 revisions
Add a dependency declaration into your Build.scala
or build.sbt
file:
-
for Play2.1.x
"jp.t2v" %% "play2.auth" % "0.9", "jp.t2v" %% "play2.auth.test" % "0.9" % "test"
For example your Build.scala
might look like this:
val appDependencies = Seq(
"jp.t2v" %% "play2.auth" % "0.9",
"jp.t2v" %% "play2.auth.test" % "0.9" % "test"
)
val main = play.Project(appName, appVersion, appDependencies)
You don't need to create a play.plugins
file.