<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.github.karelcemus</groupId>
    <artifactId>play-redis_2.12</artifactId>
    <packaging>jar</packaging>
    <description>Redis cache plugin for the Play framework 2</description>
    <url>https://github.com/karelcemus/play-redis</url>
    <version>2.7.0</version>
    <licenses>
        <license>
            <name>Apache 2</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <name>Redis Cache for Play</name>
    <organization>
        <name>com.github.karelcemus</name>
        <url>https://github.com/karelcemus/play-redis</url>
    </organization>
    <scm>
        <url>git@github.com:KarelCemus/play-redis.git</url>
        <connection>scm:git@github.com:KarelCemus/play-redis.git</connection>
    </scm>
    <developers>
        <developer>
            <name>Karel Čemus</name>
        </developer>
    </developers>
    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.12.15</version>
        </dependency>
        <dependency>
            <groupId>com.typesafe.play</groupId>
            <artifactId>play-cache_2.12</artifactId>
            <version>2.8.13</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.github.karelcemus</groupId>
            <artifactId>rediscala_2.12</artifactId>
            <version>1.9.1</version>
        </dependency>
        <dependency>
            <groupId>org.specs2</groupId>
            <artifactId>specs2-core_2.12</artifactId>
            <version>4.13.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.specs2</groupId>
            <artifactId>specs2-mock_2.12</artifactId>
            <version>4.13.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.typesafe.play</groupId>
            <artifactId>play-specs2_2.12</artifactId>
            <version>2.8.13</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>