jjwt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.10duke.client.jwt</groupId> <artifactId>jjwt</artifactId> <version>1.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.10duke.client.jwt</groupId> <artifactId>jjwt</artifactId> <version>1.1.0</version> <packaging>jar</packaging> <parent> <groupId>com.10duke.client.parent</groupId> <artifactId>java</artifactId> <version>1.1.0</version> <relativePath>../../parent/java/pom.xml</relativePath> </parent> <name>com.10duke.client.jwt:jjwt</name> <description>io.jsonwebtoken -bindings for JWT-processing</description> <properties> <xd.module.groupId>com.tenduke.client.jwt</xd.module.groupId> </properties> <dependencies> <dependency> <groupId>com.10duke.client.jwt</groupId> <artifactId>api</artifactId> <version>1.1.0</version> </dependency> <!-- External dependencies --> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-api</artifactId> <version>0.10.7</version> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-impl</artifactId> <version>0.10.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-jackson</artifactId> <version>0.10.7</version> <scope>runtime</scope> <exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${xd.jackson-databind.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> </dependencies> </project>