mirror of https://github.com/jwtk/jjwt.git
Prepping for the 0.11.0 --> 0.11.1 release
This commit is contained in:
parent
2349d4dce3
commit
f22a0e955a
26
README.md
26
README.md
|
@ -266,18 +266,18 @@ If you're building a (non-Android) JDK project, you will want to define the foll
|
|||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-api</artifactId>
|
||||
<version>0.11.0</version>
|
||||
<version>0.11.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-impl</artifactId>
|
||||
<version>0.11.0</version>
|
||||
<version>0.11.1</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
|
||||
<version>0.11.0</version>
|
||||
<version>0.11.1</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<!-- Uncomment this next dependency if you are using JDK 10 or earlier and you also want to use
|
||||
|
@ -297,11 +297,11 @@ 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.0'
|
||||
runtime 'io.jsonwebtoken:jjwt-impl:0.11.0',
|
||||
compile 'io.jsonwebtoken:jjwt-api:0.11.1'
|
||||
runtime 'io.jsonwebtoken:jjwt-impl:0.11.1',
|
||||
// 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.0' // or 'io.jsonwebtoken:jjwt-gson:0.11.0' for gson
|
||||
'io.jsonwebtoken:jjwt-jackson:0.11.1' // or 'io.jsonwebtoken:jjwt-gson:0.11.1' for gson
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -317,9 +317,9 @@ Add the dependencies to your project:
|
|||
|
||||
```groovy
|
||||
dependencies {
|
||||
api 'io.jsonwebtoken:jjwt-api:0.11.0'
|
||||
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.0'
|
||||
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.11.0') {
|
||||
api 'io.jsonwebtoken:jjwt-api:0.11.1'
|
||||
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.1'
|
||||
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.11.1') {
|
||||
exclude group: 'org.json', module: 'json' //provided by Android natively
|
||||
}
|
||||
// Uncomment the next line if you want to use RSASSA-PSS (PS256, PS384, PS512) algorithms:
|
||||
|
@ -1330,7 +1330,7 @@ scope which is the typical JJWT default). That is:
|
|||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-jackson</artifactId>
|
||||
<version>0.11.0</version>
|
||||
<version>0.11.1</version>
|
||||
<scope>compile</scope> <!-- Not runtime -->
|
||||
</dependency>
|
||||
```
|
||||
|
@ -1339,7 +1339,7 @@ scope which is the typical JJWT default). That is:
|
|||
|
||||
```groovy
|
||||
dependencies {
|
||||
compile 'io.jsonwebtoken:jjwt-jackson:0.11.0'
|
||||
compile 'io.jsonwebtoken:jjwt-jackson:0.11.1'
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -1438,7 +1438,7 @@ scope which is the typical JJWT default). That is:
|
|||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-gson</artifactId>
|
||||
<version>0.11.0</version>
|
||||
<version>0.11.1</version>
|
||||
<scope>compile</scope> <!-- Not runtime -->
|
||||
</dependency>
|
||||
```
|
||||
|
@ -1447,7 +1447,7 @@ scope which is the typical JJWT default). That is:
|
|||
|
||||
```groovy
|
||||
dependencies {
|
||||
compile 'io.jsonwebtoken:jjwt-gson:0.11.0'
|
||||
compile 'io.jsonwebtoken:jjwt-gson:0.11.1'
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue