-
Notifications
You must be signed in to change notification settings - Fork 135
Installation
milo-minderbender edited this page Aug 17, 2012
·
7 revisions
-
Add a repository resolver into your
Build.scalaorbuild.sbtfile:resolvers += "t2v.jp repo" at "http://www.t2v.jp/maven-repo/" -
Add a dependency declaration into your
Build.scalaorbuild.sbtfile:-
For the stable release:
"jp.t2v" %% "play20.auth" % "0.2" -
Current snapshot version:
"jp.t2v" %% "play20.auth" % "0.3-SNAPSHOT"
-
For example your Build.scala might look like this:
val appDependencies = Seq(
"jp.t2v" %% "play20.auth" % "0.1"
)
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.