mirror of
https://github.com/jwtk/jjwt.git
synced 2025-02-16 14:24:44 +00:00
0.11.5 release (#735)
* Changed README references from 0.11.4 to 0.11.5 * [maven-release-plugin] prepare release 0.11.5 * [maven-release-plugin] prepare for next development iteration
This commit is contained in:
parent
877960fe04
commit
eb20914fa7
26
README.md
26
README.md
@ -264,18 +264,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.4</version>
|
||||
<version>0.11.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-impl</artifactId>
|
||||
<version>0.11.4</version>
|
||||
<version>0.11.5</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
|
||||
<version>0.11.4</version>
|
||||
<version>0.11.5</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<!-- Uncomment this next dependency if you are using JDK 10 or earlier and you also want to use
|
||||
@ -295,11 +295,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.4'
|
||||
runtime 'io.jsonwebtoken:jjwt-impl:0.11.4',
|
||||
compile 'io.jsonwebtoken:jjwt-api:0.11.5'
|
||||
runtime 'io.jsonwebtoken:jjwt-impl:0.11.5',
|
||||
// Uncomment the next line if you want to use RSASSA-PSS (PS256, PS384, PS512) algorithms:
|
||||
//'org.bouncycastle:bcprov-jdk15on:1.70',
|
||||
'io.jsonwebtoken:jjwt-jackson:0.11.4' // or 'io.jsonwebtoken:jjwt-gson:0.11.4' for gson
|
||||
'io.jsonwebtoken:jjwt-jackson:0.11.5' // or 'io.jsonwebtoken:jjwt-gson:0.11.5' for gson
|
||||
}
|
||||
```
|
||||
|
||||
@ -315,9 +315,9 @@ Add the dependencies to your project:
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
api 'io.jsonwebtoken:jjwt-api:0.11.4'
|
||||
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.4'
|
||||
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.11.4') {
|
||||
api 'io.jsonwebtoken:jjwt-api:0.11.5'
|
||||
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
|
||||
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.11.5') {
|
||||
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:
|
||||
@ -1328,7 +1328,7 @@ scope which is the typical JJWT default). That is:
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-jackson</artifactId>
|
||||
<version>0.11.4</version>
|
||||
<version>0.11.5</version>
|
||||
<scope>compile</scope> <!-- Not runtime -->
|
||||
</dependency>
|
||||
```
|
||||
@ -1337,7 +1337,7 @@ scope which is the typical JJWT default). That is:
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.4'
|
||||
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5'
|
||||
}
|
||||
```
|
||||
|
||||
@ -1436,7 +1436,7 @@ scope which is the typical JJWT default). That is:
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-gson</artifactId>
|
||||
<version>0.11.4</version>
|
||||
<version>0.11.5</version>
|
||||
<scope>compile</scope> <!-- Not runtime -->
|
||||
</dependency>
|
||||
```
|
||||
@ -1445,7 +1445,7 @@ scope which is the typical JJWT default). That is:
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'io.jsonwebtoken:jjwt-gson:0.11.4'
|
||||
implementation 'io.jsonwebtoken:jjwt-gson:0.11.5'
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.11.5-SNAPSHOT</version>
|
||||
<version>0.11.6-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.11.5-SNAPSHOT</version>
|
||||
<version>0.11.6-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.11.5-SNAPSHOT</version>
|
||||
<version>0.11.6-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.11.5-SNAPSHOT</version>
|
||||
<version>0.11.6-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.11.5-SNAPSHOT</version>
|
||||
<version>0.11.6-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.11.5-SNAPSHOT</version>
|
||||
<version>0.11.6-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user