<?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>dev.relism</groupId>
        <artifactId>flash-extensions</artifactId>
        <version>2.1.0-dd0455c</version>
    </parent>

    <artifactId>flash-ext-cache-caffeine</artifactId>

    <dependencies>
        <dependency>
            <groupId>dev.relism</groupId>
            <artifactId>flash-ext-cache-core</artifactId>
        </dependency>
        <!--
          Caffeine rather than a hand-rolled LRU: W-TinyLFU admission, striped counters and
          amortised eviction are not a weekend's work to get right, and getting them wrong is a
          cache that is slower than no cache.
        -->
        <dependency>
            <groupId>com.github.ben-manes.caffeine</groupId>
            <artifactId>caffeine</artifactId>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
        </dependency>
        <dependency>
            <groupId>dev.relism</groupId>
            <artifactId>flash-testing</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
