<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">
  <parent>
    <groupId>com.addc</groupId>
    <artifactId>addc-commons</artifactId>
    <version>2.2</version>
    <relativePath>../addc-commons</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>addc-cache</artifactId>
  <packaging>jar</packaging>
  <name>addc-cache</name>
  <description>
  The addc-cache library supplies classes to support caches that can be flushed or whose objects re retained only 
  for a certain time and  whose timeout may be reset by access to the object.
  </description>

  <dependencies>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-base</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.addc</groupId>
      <artifactId>addc-test</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
