forked from t2v/play2-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
gakuzzzz edited this page Sep 9, 2012
·
6 revisions
-
Add a repository resolver into your
Build.scala
orbuild.sbt
file:resolvers += "t2v.jp repo" at "http://www.t2v.jp/maven-repo/"
-
Add a dependency declaration into your
Build.scala
orbuild.sbt
file:-
For the stable release:
"jp.t2v" % "play20.auth_2.9.1" % "0.3"
-
Current snapshot version:
"jp.t2v" % "play20.auth_2.9.1" % "0.4-SNAPSHOT"
-
For example your Build.scala
might look like this:
val appDependencies = Seq(
"jp.t2v" % "play20.auth_2.9.1" % "0.3"
)
val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(
resolvers += "t2v.jp repo" at "http://www.t2v.jp/maven-repo/"
)
You don't need to create a play.plugins
file.