From d9da0e3e80d2c63dda659992f0ed962f6275eef6 Mon Sep 17 00:00:00 2001 From: minho Date: Mon, 31 May 2021 11:57:42 +0900 Subject: [PATCH] update installation using Gradle --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d138f4f2..fed01014 100644 --- a/README.md +++ b/README.md @@ -297,8 +297,8 @@ If you're building a (non-Android) JDK project, you will want to define the foll ```groovy dependencies { - compile 'io.jsonwebtoken:jjwt-api:0.11.2' - runtime 'io.jsonwebtoken:jjwt-impl:0.11.2', + implementation 'io.jsonwebtoken:jjwt-api:0.11.2' + runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2', // Uncomment the next line if you want to use RSASSA-PSS (PS256, PS384, PS512) algorithms: //'org.bouncycastle:bcprov-jdk15on:1.60', 'io.jsonwebtoken:jjwt-jackson:0.11.2' // or 'io.jsonwebtoken:jjwt-gson:0.11.2' for gson @@ -1339,7 +1339,7 @@ scope which is the typical JJWT default). That is: ```groovy dependencies { - compile 'io.jsonwebtoken:jjwt-jackson:0.11.2' + implementation 'io.jsonwebtoken:jjwt-jackson:0.11.2' } ``` @@ -1447,7 +1447,7 @@ scope which is the typical JJWT default). That is: ```groovy dependencies { - compile 'io.jsonwebtoken:jjwt-gson:0.11.2' + implementation 'io.jsonwebtoken:jjwt-gson:0.11.2' } ```