Skip to content

Commit

Permalink
Update jjwt version
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed Oct 19, 2020
1 parent b3169fb commit b2aedda
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ We use jitpack to build this library, which means you can direct maven or gradle
<dependency>
<groupId>com.github.gameontext</groupId>
<artifactId>signed</artifactId>
<version>v1.0.3</version>
<version>v1.0.4</version>
</dependency>
```
* In gradle:
```
dependencies {
compile 'com.github.gameontext:signed:v1.0.3'
compile 'com.github.gameontext:signed:v1.0.4'
}
```
3. Use SignedRequest* utilities to handle request signing
Expand All @@ -47,8 +47,8 @@ We use jitpack to build this library, which means you can direct maven or gradle
SignedClientRequestFilter apikeyFilter = new SignedClientRequestFilter(userid, secret);
client.register(apikeyFilter);
```
* Room-side of WebSocket Handshake via ServerEndpointConfig.Configurator

* Room-side of WebSocket Handshake via ServerEndpointConfig.Configurator
```
public void modifyHandshake(ServerEndpointConfig sec, HandshakeRequest request, HandshakeResponse response) {
super.modifyHandshake(sec, request, response);
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'maven'
apply plugin: 'jacoco'

group = 'com.github.gameontext'
version = '1.0.3'
version = '1.0.4'

sourceCompatibility = 1.8

Expand All @@ -22,7 +22,7 @@ dependencies {
compile 'javax.enterprise:cdi-api:1.2'
compile 'javax.servlet:javax.servlet-api:3.1.0'
compile 'javax.enterprise.concurrent:javax.enterprise.concurrent-api:1.0'
compile 'io.jsonwebtoken:jjwt:0.5.1'
compile 'io.jsonwebtoken:jjwt-api:0.10.5'

jmockit 'org.jmockit:jmockit:1.22'
testCompile 'junit:junit:4.12'
Expand Down

0 comments on commit b2aedda

Please sign in to comment.