Skip to content

Commit a757add

Browse files
committed
[maven-release-plugin] prepare release 0.13.0
1 parent e357463 commit a757add

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.13.0</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

bom/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.13.0</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

@@ -40,34 +40,34 @@
4040
<dependency>
4141
<groupId>io.jsonwebtoken</groupId>
4242
<artifactId>jjwt</artifactId>
43-
<version>0.13.0-SNAPSHOT</version>
43+
<version>0.13.0</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>io.jsonwebtoken</groupId>
4747
<artifactId>jjwt-api</artifactId>
48-
<version>0.13.0-SNAPSHOT</version>
48+
<version>0.13.0</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>io.jsonwebtoken</groupId>
5252
<artifactId>jjwt-impl</artifactId>
53-
<version>0.13.0-SNAPSHOT</version>
53+
<version>0.13.0</version>
5454
</dependency>
5555

5656
<!-- Extensions -->
5757
<dependency>
5858
<groupId>io.jsonwebtoken</groupId>
5959
<artifactId>jjwt-orgjson</artifactId>
60-
<version>0.13.0-SNAPSHOT</version>
60+
<version>0.13.0</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>io.jsonwebtoken</groupId>
6464
<artifactId>jjwt-gson</artifactId>
65-
<version>0.13.0-SNAPSHOT</version>
65+
<version>0.13.0</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>io.jsonwebtoken</groupId>
6969
<artifactId>jjwt-jackson</artifactId>
70-
<version>0.13.0-SNAPSHOT</version>
70+
<version>0.13.0</version>
7171
</dependency>
7272
</dependencies>
7373
</dependencyManagement>

extensions/gson/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.13.0</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extensions/jackson/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.13.0</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extensions/orgjson/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.13.0</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extensions/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.13.0</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

impl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.13.0</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<groupId>io.jsonwebtoken</groupId>
2121
<artifactId>jjwt-root</artifactId>
22-
<version>0.13.0-SNAPSHOT</version>
22+
<version>0.13.0</version>
2323
<name>JJWT</name>
2424
<description>JSON Web Token support for the JVM and Android</description>
2525
<packaging>pom</packaging>
@@ -52,7 +52,7 @@
5252
<connection>scm:git:https://github.com/jwtk/jjwt.git</connection>
5353
<developerConnection>scm:git:https://github.com/jwtk/jjwt.git</developerConnection>
5454
<url>https://github.com/jwtk/jjwt.git</url>
55-
<tag>HEAD</tag>
55+
<tag>0.13.0</tag>
5656
</scm>
5757
<issueManagement>
5858
<system>GitHub Issues</system>

tdjar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.13.0</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

0 commit comments

Comments
 (0)