<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>9.2.0</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>3.3.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-common</artifactId>
			<version>${project.version}</version>
			<classifier>tests</classifier>
			<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>
