Skip to content

Commit

Permalink
Merge pull request #1 from aotd1/master
Browse files Browse the repository at this point in the history
Bump akka-http to stable 10.0.1, nimbus-jose-jwt to 4.33
  • Loading branch information
witi83 authored Jan 10, 2017
2 parents dd35fb9 + 38ef13c commit f763c30
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*akka-jwt* (based on [spray-jwt](https://github.com/kikuomax/spray-jwt)) is a set of utilities for [akka-http](http://doc.akka.io/docs/akka-stream-and-http-experimental/current/scala/http/), which perform signing and verification of a JSON Web Token (JWT).
*akka-jwt* (based on [spray-jwt](https://github.com/kikuomax/spray-jwt)) is a set of utilities for [akka-http](http://doc.akka.io/docs/akka-http/current/scala.html), which perform signing and verification of a JSON Web Token (JWT).

Getting Started
===============
Expand All @@ -7,7 +7,7 @@ Add the following dependency to your `build.sbt`,

```
resolvers += "witi83 at bintray" at "http://dl.bintray.com/witi83/maven"
libraryDependencies += "com.github.witi83" %% "akka-jwt" % "1.2.0"
libraryDependencies += "com.github.witi83" %% "akka-jwt" % "1.3.0"
```

Example
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "akka-jwt"
organization := "com.github.witi83"
version := "1.2.0"
version := "1.3.0"
scalaVersion := "2.11.8"

scalacOptions := Seq("-deprecation",
Expand All @@ -18,8 +18,8 @@ scalacOptions := Seq("-deprecation",

libraryDependencies ++= {
Seq(
"com.typesafe.akka" %% "akka-http-experimental" % "2.4.11",
"com.nimbusds" % "nimbus-jose-jwt" % "4.27"
"com.typesafe.akka" %% "akka-http" % "10.0.1",
"com.nimbusds" % "nimbus-jose-jwt" % "4.33"
)
}

Expand Down

0 comments on commit f763c30

Please sign in to comment.