wicketstuff-datastore-redis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-datastore-redis</artifactId>
<version>10.9.2</version>
</dependency><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">
<parent>
<groupId>org.wicketstuff</groupId>
<artifactId>datastores-parent</artifactId>
<version>10.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wicketstuff-datastore-redis</artifactId>
<packaging>jar</packaging>
<name>Apache Wicket IPageStore Redis </name>
<description>An implementation of Apache Wicket's IPageStore that uses Redis as a backend</description>
<properties>
<jedis.version>7.5.0</jedis.version>
</properties>
<dependencies>
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-datastore-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-datastore-tests</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
</project>