Skip to content

Commit 59e18d1

Browse files
author
Marcos.Cela
committed
add dependencies for jwt token generation
These dependencies are marked as "provided" because they are only used in the extras package
1 parent ff790ee commit 59e18d1

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
<jacoco.coverage.target.class.method>0.25</jacoco.coverage.target.class.method>
4747
<!-- For non-ci builds we'd like the build to still complete if jacoco metrics aren't met. -->
4848
<jacoco.haltOnFailure>false</jacoco.haltOnFailure>
49+
<jjwt.suite.version>0.11.1</jjwt.suite.version>
4950
</properties>
5051

5152
<build>
@@ -540,6 +541,26 @@
540541
<version>2.8.6</version>
541542
<scope>test</scope>
542543
</dependency>
544+
<!-- JWT Dependencies -->
545+
<dependency>
546+
<groupId>io.jsonwebtoken</groupId>
547+
<artifactId>jjwt-api</artifactId>
548+
<version>${jjwt.suite.version}</version>
549+
<scope>provided</scope>
550+
</dependency>
551+
<dependency>
552+
<groupId>io.jsonwebtoken</groupId>
553+
<artifactId>jjwt-impl</artifactId>
554+
<version>${jjwt.suite.version}</version>
555+
<scope>provided</scope>
556+
</dependency>
557+
<dependency>
558+
<groupId>io.jsonwebtoken</groupId>
559+
<artifactId>jjwt-jackson</artifactId>
560+
<version>${jjwt.suite.version}</version>
561+
<scope>provided</scope>
562+
</dependency>
563+
<!-- end JWT Dependencies -->
543564
</dependencies>
544565
<repositories>
545566
<repository>

0 commit comments

Comments
 (0)