<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>
  <artifactId>imcache</artifactId>
  <name>imcache</name>
  <parent>
    <groupId>com.cetsoft</groupId>
    <artifactId>imcache-parent</artifactId>
    <version>0.3.0</version>
  </parent>
  <dependencies>
    <dependency>
      <groupId>com.cetsoft</groupId>
      <artifactId>imcache-core</artifactId>
    </dependency>
    <dependency>
      <groupId>com.cetsoft</groupId>
      <artifactId>imcache-heap</artifactId>
    </dependency>
    <dependency>
      <groupId>com.cetsoft</groupId>
      <artifactId>imcache-offheap</artifactId>
    </dependency>
    <dependency>
      <groupId>com.cetsoft</groupId>
      <artifactId>imcache-redis</artifactId>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>