File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -297,8 +297,8 @@ If you're building a (non-Android) JDK project, you will want to define the foll
297297
298298``` groovy
299299dependencies {
300- compile 'io.jsonwebtoken:jjwt-api:0.11.2'
301- runtime 'io.jsonwebtoken:jjwt-impl:0.11.2',
300+ implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
301+ runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2',
302302 // Uncomment the next line if you want to use RSASSA-PSS (PS256, PS384, PS512) algorithms:
303303 //'org.bouncycastle:bcprov-jdk15on:1.60',
304304 '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:
13391339
13401340```groovy
13411341dependencies {
1342- compile ' io. jsonwebtoken: jjwt- jackson: 0.11 . 2 '
1342+ implementation ' io. jsonwebtoken: jjwt- jackson: 0.11 . 2 '
13431343}
13441344```
13451345
@@ -1447,7 +1447,7 @@ scope which is the typical JJWT default). That is:
14471447
14481448```groovy
14491449dependencies {
1450- compile ' io. jsonwebtoken: jjwt- gson: 0.11 . 2 '
1450+ implementation ' io. jsonwebtoken: jjwt- gson: 0.11 . 2 '
14511451}
14521452```
14531453
You can’t perform that action at this time.
0 commit comments