Skip to content
gakuzzzz edited this page Sep 9, 2012 · 6 revisions

Installation

  1. Add a repository resolver into your Build.scala or build.sbt file:

     resolvers += "t2v.jp repo" at "http://www.t2v.jp/maven-repo/"
    
  2. Add a dependency declaration into your Build.scala or build.sbt file:

    1. For the stable release:

       "jp.t2v" % "play20.auth_2.9.1" % "0.3"
      
    2. 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.