oauth-dao-memory
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.sakaiproject.oauth</groupId>
<artifactId>oauth-dao-memory</artifactId>
<version>11.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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sakaiproject.oauth</groupId>
<artifactId>oauth-base</artifactId>
<version>11.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>oauth-dao-memory</artifactId>
<packaging>jar</packaging>
<name>OAuth In-memory DAO</name>
<description>
In memory implementation of the DAO used by the OAuth tool, allowing to save the configuration and tokens in
memory.
</description>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>oauth-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>