commons-jwt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pl.chilldev.commons</groupId> <artifactId>commons-jwt</artifactId> <version>0.3.15</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <!-- # This file is part of the ChillDev-Commons. # # @license http://mit-license.org/ The MIT license # @copyright 2017 - 2018 © by Rafał Wrzeszcz - Wrzasq.pl. --> <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/maven-v4_0_0.xsd "> <modelVersion>4.0.0</modelVersion> <!-- core project settings --> <artifactId>commons-jwt</artifactId> <packaging>jar</packaging> <parent> <groupId>pl.chilldev.commons</groupId> <artifactId>commons</artifactId> <version>0.3.15</version> <relativePath>../</relativePath> </parent> <!-- project meta info --> <name>ChillDev Commons JWT</name> <url>https://chilloutdevelopment.github.io/pl.chilldev.commons/commons-jwt/</url> <description>JSON Web Tokens utilities.</description> <inceptionYear>2017</inceptionYear> <!-- project dependencies --> <dependencies> <dependency> <groupId>com.auth0</groupId> <artifactId>jwks-rsa</artifactId> <version>0.4.0</version> </dependency> </dependencies> </project>