<?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">
    <parent>
        <groupId>com.rackspace.papi.components</groupId>
        <artifactId>datastores-support</artifactId>
        <version>6.0.1</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>datastore-api</artifactId>

    <name>Repose Components - Datastores - API</name>
    <description>
        The API that Repose uses for datastores is exposed here. This allows
        for if the default implementations provided by Repose are not adequate
        for a given deployment, then a new one can be created that is usable by
        Repose.
    </description>

    <properties>
        <sonar.jacoco.itReportPath>${project.basedir}/../../../target/jacoco-it.exec</sonar.jacoco.itReportPath>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.rackspace.papi.commons</groupId>
            <artifactId>utilities</artifactId>
            <version>${project.version}</version>
        </dependency>
    </dependencies>

</project>
