From b2aedda8d30717302153fcb4a7d63864cf74d8e9 Mon Sep 17 00:00:00 2001 From: Erin Schnabel Date: Mon, 19 Oct 2020 14:56:17 -0400 Subject: [PATCH] Update jjwt version --- README.md | 8 ++++---- build.gradle | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 427412f..bcefdde 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,13 @@ We use jitpack to build this library, which means you can direct maven or gradle com.github.gameontext signed - v1.0.3 + v1.0.4 ``` * 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 @@ -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); diff --git a/build.gradle b/build.gradle index 36bc094..0edf454 100644 --- a/build.gradle +++ b/build.gradle @@ -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 @@ -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'