mvc-auth-commons
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.auth0</groupId>
<artifactId>mvc-auth-commons</artifactId>
<version>2.0.0-beta.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.auth0</groupId>
<artifactId>mvc-auth-commons</artifactId>
<version>2.0.0-beta.1</version>
<name>auth0-java-mvc-common</name>
<description>Java library that simplifies the use of Auth0 for server-side MVC web apps</description>
<url>https://github.com/auth0/auth0-java-mvc-common</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>https://raw.githubusercontent.com/auth0/java-jwt/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>auth0</id>
<name>Auth0</name>
<email>oss@auth0.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/auth0/auth0-java-mvc-common.git</connection>
<developerConnection>scm:git:https://github.com/auth0/auth0-java-mvc-common.git</developerConnection>
<url>https://github.com/auth0/auth0-java-mvc-common</url>
</scm>
<dependencies>
<dependency>
<groupId>com.auth0</groupId>
<artifactId>auth0</artifactId>
<version>3.10.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>4.5.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.auth0</groupId>
<artifactId>jwks-rsa</artifactId>
<version>0.24.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.20.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.1-jre</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.22.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>