<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>7.2.0</version>
	</parent>

	<modelVersion>4.0.0</modelVersion>
	<artifactId>wicketstuff-datastore-redis</artifactId>
	<packaging>jar</packaging>
	<name>Apache Wicket IDataStore Redis </name>
	<description>An implementation of Apache Wicket's IDataStore that uses Redis as a backend</description>

	<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>2.2.1</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>

	</dependencies>

</project>
