mirror of
https://github.com/jwtk/jjwt.git
synced 2025-02-16 17:54:58 +00:00
Released 0.12.3
* Version reference changes in preparation for the 0.12.3 release (#863) * [maven-release-plugin] prepare release 0.12.3 * [maven-release-plugin] prepare for next development iteration
This commit is contained in:
parent
28a2ca716a
commit
917ffbb5d9
26
README.md
26
README.md
@ -540,18 +540,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.12.2</version>
|
||||
<version>0.12.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-impl</artifactId>
|
||||
<version>0.12.2</version>
|
||||
<version>0.12.3</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
|
||||
<version>0.12.2</version>
|
||||
<version>0.12.3</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<!-- Uncomment this next dependency if you are using:
|
||||
@ -574,9 +574,9 @@ If you're building a (non-Android) JDK project, you will want to define the foll
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'io.jsonwebtoken:jjwt-api:0.12.2'
|
||||
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.2'
|
||||
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.2' // or 'io.jsonwebtoken:jjwt-gson:0.12.2' for gson
|
||||
implementation 'io.jsonwebtoken:jjwt-api:0.12.3'
|
||||
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.3'
|
||||
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.3' // or 'io.jsonwebtoken:jjwt-gson:0.12.3' for gson
|
||||
/*
|
||||
Uncomment this next dependency if you are using:
|
||||
- JDK 10 or earlier, and you want to use RSASSA-PSS (PS256, PS384, PS512) signature algorithms.
|
||||
@ -601,9 +601,9 @@ Add the dependencies to your project:
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
api('io.jsonwebtoken:jjwt-api:0.12.2')
|
||||
runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.2')
|
||||
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.2') {
|
||||
api('io.jsonwebtoken:jjwt-api:0.12.3')
|
||||
runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.3')
|
||||
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.3') {
|
||||
exclude(group: 'org.json', module: 'json') //provided by Android natively
|
||||
}
|
||||
/*
|
||||
@ -2952,7 +2952,7 @@ scope which is the typical JJWT default). That is:
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-jackson</artifactId>
|
||||
<version>0.12.2</version>
|
||||
<version>0.12.3</version>
|
||||
<scope>compile</scope> <!-- Not runtime -->
|
||||
</dependency>
|
||||
```
|
||||
@ -2961,7 +2961,7 @@ scope which is the typical JJWT default). That is:
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.2'
|
||||
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.3'
|
||||
}
|
||||
```
|
||||
|
||||
@ -3069,7 +3069,7 @@ scope which is the typical JJWT default). That is:
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-gson</artifactId>
|
||||
<version>0.12.2</version>
|
||||
<version>0.12.3</version>
|
||||
<scope>compile</scope> <!-- Not runtime -->
|
||||
</dependency>
|
||||
```
|
||||
@ -3078,7 +3078,7 @@ scope which is the typical JJWT default). That is:
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'io.jsonwebtoken:jjwt-gson:0.12.2'
|
||||
implementation 'io.jsonwebtoken:jjwt-gson:0.12.3'
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.12.3-SNAPSHOT</version>
|
||||
<version>0.12.4-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -158,7 +158,7 @@ public interface JwtBuilder extends ClaimsMutator<JwtBuilder> {
|
||||
* @param payload the string used to set UTF-8-encoded bytes as the JWT payload.
|
||||
* @return the builder for method chaining.
|
||||
* @see #content(String)
|
||||
* @deprecated since JJWT_RELEASE VERSION in favor of {@link #content(String)}
|
||||
* @deprecated since 0.12.0 in favor of {@link #content(String)}
|
||||
* because both Claims and Content are technically 'payloads', so this method name is misleading. This method will
|
||||
* be removed before the 1.0 release.
|
||||
*/
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.12.3-SNAPSHOT</version>
|
||||
<version>0.12.4-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.12.3-SNAPSHOT</version>
|
||||
<version>0.12.4-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.12.3-SNAPSHOT</version>
|
||||
<version>0.12.4-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.12.3-SNAPSHOT</version>
|
||||
<version>0.12.4-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.12.3-SNAPSHOT</version>
|
||||
<version>0.12.4-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
2
pom.xml
2
pom.xml
@ -19,7 +19,7 @@
|
||||
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.12.3-SNAPSHOT</version>
|
||||
<version>0.12.4-SNAPSHOT</version>
|
||||
<name>JJWT</name>
|
||||
<description>JSON Web Token support for the JVM and Android</description>
|
||||
<packaging>pom</packaging>
|
||||
|
@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.12.3-SNAPSHOT</version>
|
||||
<version>0.12.4-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user