File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -20,17 +20,29 @@ and an access token type called [Bearer](http://tools.ietf.org/html/rfc6750).
2020
2121If you'd like to use this with Playframework, add "play2-oauth2-provider" to library dependencies of your project.
2222
23+ ### For Playframework 2.3
24+
25+ ``` scala
26+ libraryDependencies ++= Seq (
27+ " com.nulab-inc" %% " play2-oauth2-provider" % " 0.8.0"
28+ )
29+ ```
30+
31+ ### For Playframework 2.2
32+
2333``` scala
2434libraryDependencies ++= Seq (
2535 " com.nulab-inc" %% " play2-oauth2-provider" % " 0.7.2"
2636)
2737```
2838
29- Otherwise, add "scala-oauth2-core" instead. In this case, you need to implement your own OAuth provider working with web framework you use.
39+ ### Other frameworks
40+
41+ Add "scala-oauth2-core" instead. In this case, you need to implement your own OAuth provider working with web framework you use.
3042
3143``` scala
3244libraryDependencies ++= Seq (
33- " com.nulab-inc" %% " scala-oauth2-core" % " 0.7.2 "
45+ " com.nulab-inc" %% " scala-oauth2-core" % " 0.8.0 "
3446)
3547```
3648
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Keys._
44object ScalaOAuth2Build extends Build {
55
66 lazy val _organization = " com.nulab-inc"
7- lazy val _version = " 0.8.0-SNAPSHOT "
7+ lazy val _version = " 0.8.0"
88 lazy val _playVersion = " 2.3.2"
99
1010 val _scalaVersion = " 2.10.4"
You can’t perform that action at this time.
0 commit comments