auth0-spring-security-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.auth0</groupId> <artifactId>auth0-spring-security-api</artifactId> <version>1.5.3</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>auth0-spring-security-api</artifactId> <version>1.5.3</version> <packaging>jar</packaging> <name>auth0-spring-security-api</name> <description>Auth0 Java Spring integration for API</description> <url>https://github.com/auth0/auth0-spring-security-api</url> <developers> <developer> <id>auth0</id> <name>Auth0</name> <email>oss@auth0.com</email> </developer> <developer> <id>hzalaz</id> <name>Hernan Zalazar</name> <email>hernan@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>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>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> <version>4.2.20.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <version>4.2.20.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> <version>4.2.20.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.15</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> <scope>runtime</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> </dependencies> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://raw.githubusercontent.com/auth0/auth0-spring-security-api/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git@github.com:auth0/auth0-spring-security-api.git</connection> <developerConnection>scm:git@github.com:auth0/auth0-spring-security-api.git</developerConnection> <url>https://github.com/auth0/auth0-spring-security-api</url> </scm> </project>