<?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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>uk.ac.warwick.util</groupId>
		<artifactId>warwickutils-project</artifactId>
		<version>20260402</version>
		<relativePath>../../pom.xml</relativePath>
	</parent>

	<artifactId>warwickutils-cache</artifactId>

	<name>Warwick Utils :: Cache</name>
	<description>Provides memory and EhCache-backed cache implementations</description>

	<properties>
		<project.root>${project.basedir}/../..</project.root>
	</properties>

	<dependencies>
        <dependency>
            <groupId>uk.ac.warwick.util</groupId>
            <artifactId>warwickutils-core</artifactId>
        </dependency>

		<dependency>
            <groupId>com.github.ben-manes.caffeine</groupId>
            <artifactId>caffeine</artifactId>
            <optional>true</optional>
		</dependency>

        <dependency>
            <groupId>net.spy</groupId>
            <artifactId>spymemcached</artifactId>
            <optional>true</optional>
        </dependency>

        <!-- The Amazon ElastiCache client is a fork of spymemcached with extra methods -->
        <dependency>
            <groupId>com.amazonaws</groupId>
            <artifactId>elasticache-java-cluster-client</artifactId>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>com.thimbleware.jmemcached</groupId>
            <artifactId>jmemcached-core</artifactId>
            <scope>test</scope>
        </dependency>

        <!-- For the uk.ac.warwick.util.cache.spring package -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>uk.ac.warwick.util</groupId>
            <artifactId>test-resources</artifactId>
            <scope>test</scope>
        </dependency>
	</dependencies>

</project>
