Skip to content

Commit 63ab59f

Browse files
committed
added akka-http on readme
1 parent b880fb7 commit 63ab59f

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

README.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[The OAuth 2.0](http://tools.ietf.org/html/rfc6749) server-side implementation written in Scala.
44

5-
This provides OAuth 2.0 server-side functionality and supporting function for [Play Framework](http://www.playframework.com/). Play Framework 2.2, 2.3, 2.4 and 2.5 are now supported.
5+
This provides OAuth 2.0 server-side functionality and supporting function for [Play Framework](http://www.playframework.com/) and [Akka HTTP](http://akka.io/).
66

77
The idea of this library originally comes from [oauth2-server](https://github.com/yoichiro/oauth2-server) which is Java implementation of OAuth 2.0.
88

@@ -21,38 +21,48 @@ and an access token type called [Bearer](http://tools.ietf.org/html/rfc6750).
2121

2222
If you'd like to use this with Play Framework, add "play2-oauth2-provider" to library dependencies of your project.
2323

24-
### For Play Framework 2.5
24+
### Play Framework
25+
#### 2.5
2526

2627
```scala
2728
libraryDependencies ++= Seq(
2829
"com.nulab-inc" %% "play2-oauth2-provider" % "0.18.0"
2930
)
3031
```
3132

32-
### For Play Framework 2.4
33+
#### 2.4
3334

3435
```scala
3536
libraryDependencies ++= Seq(
3637
"com.nulab-inc" %% "play2-oauth2-provider" % "0.16.1"
3738
)
3839
```
3940

40-
### For Play Framework 2.3
41+
#### 2.3
4142

4243
```scala
4344
libraryDependencies ++= Seq(
4445
"com.nulab-inc" %% "play2-oauth2-provider" % "0.14.0"
4546
)
4647
```
4748

48-
### For Play Framework 2.2
49+
#### 2.2
4950

5051
```scala
5152
libraryDependencies ++= Seq(
5253
"com.nulab-inc" %% "play2-oauth2-provider" % "0.7.4"
5354
)
5455
```
5556

57+
### Akka HTTP
58+
#### 2.4
59+
60+
```scala
61+
libraryDependencies ++= Seq(
62+
"com.nulab-inc" %% "akka-http-oauth2-provider" % "0.18.0"
63+
)
64+
```
65+
5666
### Other frameworks
5767

5868
Add "scala-oauth2-core" instead. In this case, you need to implement your own OAuth provider working with web framework you use.

0 commit comments

Comments
 (0)