jwt-servlet-auth-aws
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.telicent.public</groupId>
<artifactId>jwt-servlet-auth-aws</artifactId>
<version>4.1.4</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">
<parent>
<artifactId>jwt-servlet-auth-parent</artifactId>
<groupId>io.telicent.public</groupId>
<version>4.1.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jwt-servlet-auth-aws</artifactId>
<name>Telicent - JWT Servlet Auth - AWS Integration</name>
<description>A helper library that provides support for verifying JSON Web Tokens (JWTs) issued by Amazon Elastic Load Balancer (ELB)</description>
<properties>
<license.header.path>${project.parent.basedir}</license.header.path>
<skip.testJars>false</skip.testJars>
</properties>
<dependencies>
<dependency>
<groupId>io.telicent.public</groupId>
<artifactId>jwt-servlet-auth-core</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.telicent.public</groupId>
<artifactId>jwt-servlet-auth-core</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${dependency.jetty12}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.ee9</groupId>
<artifactId>jetty-ee9-servlet</artifactId>
<version>${dependency.jetty12}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${plugin.jacoco}</version>
</plugin>
</plugins>
</build>
</project>