oauth-servlets
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.ltgt.oauth</groupId>
<artifactId>oauth-servlets</artifactId>
<version>1.0.0-rc-4</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>net.ltgt.oauth</groupId>
<artifactId>oauth-servlets</artifactId>
<version>1.0.0-rc-4</version>
<name>OAuth Servlets</name>
<description>Servlet filters implementing OAuth, through the Nimbus SDK</description>
<url>https://github.com/tbroyer/oauth-servlets</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Thomas Broyer</name>
<email>t.broyer@ltgt.net</email>
</developer>
</developers>
<scm>
<connection>https://github.com/tbroyer/oauth-servlets.git</connection>
<developerConnection>scm:git:ssh://github.com:tbroyer/oauth-servlets.git</developerConnection>
<url>https://github.com/tbroyer/oauth-servlets</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.ltgt.oauth</groupId>
<artifactId>oauth-bom</artifactId>
<version>1.0.0-rc-4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>net.ltgt.oauth</groupId>
<artifactId>oauth-common</artifactId>
<version>1.0.0-rc-4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.42.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>oauth2-oidc-sdk</artifactId>
<version>11.29.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>3.2.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>