mvc-auth-commons
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.auth0</groupId> <artifactId>mvc-auth-commons</artifactId> <version>1.9.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.auth0</groupId> <artifactId>mvc-auth-commons</artifactId> <version>1.9.4</version> <packaging>jar</packaging> <name>mvc-auth-commons</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> <developers> <developer> <id>auth0</id> <name>Auth0</name> <email>oss@auth0.com</email> </developer> <developer> <id>lbalmaceda</id> <name>Luciano Balmaceda</name> <email>luciano.balmaceda@auth0.com</email> </developer> </developers> <dependencies> <dependency> <groupId>com.auth0</groupId> <artifactId>auth0</artifactId> <version>1.44.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>3.19.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>jwks-rsa</artifactId> <version>0.21.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-annotations</artifactId> <version>r03</version> <scope>runtime</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.15</version> <scope>runtime</scope> </dependency> </dependencies> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://raw.githubusercontent.com/auth0/auth0-java-mvc-common/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git@github.com:auth0/auth0-java-mvc-common.git</connection> <developerConnection>scm:git@github.com:auth0/auth0-java-mvc-common.git</developerConnection> <url>https://github.com/auth0/auth0-java-mvc-common</url> </scm> </project>