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).
20
20
21
21
If you'd like to use this with Playframework, add "play2-oauth2-provider" to library dependencies of your project.
22
22
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
+
23
33
``` scala
24
34
libraryDependencies ++= Seq (
25
35
" com.nulab-inc" %% " play2-oauth2-provider" % " 0.7.2"
26
36
)
27
37
```
28
38
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.
30
42
31
43
``` scala
32
44
libraryDependencies ++= Seq (
33
- " com.nulab-inc" %% " scala-oauth2-core" % " 0.7.2 "
45
+ " com.nulab-inc" %% " scala-oauth2-core" % " 0.8.0 "
34
46
)
35
47
```
36
48
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Keys._
4
4
object ScalaOAuth2Build extends Build {
5
5
6
6
lazy val _organization = " com.nulab-inc"
7
- lazy val _version = " 0.8.0-SNAPSHOT "
7
+ lazy val _version = " 0.8.0"
8
8
lazy val _playVersion = " 2.3.2"
9
9
10
10
val _scalaVersion = " 2.10.4"
You can’t perform that action at this time.
0 commit comments