<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.modeshape</groupId>
        <artifactId>modeshape-persistence</artifactId>
        <version>5.2.0.Final</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <!-- The groupId and version values are inherited from parent -->
    <artifactId>modeshape-persistence-file</artifactId>
    <packaging>jar</packaging>
    <name>ModeShape File System Persistence Provider</name>
    <description>ModeShape Persistence Provider which stores content locally on the FS</description>
    <url>http://www.modeshape.org</url>
    <dependencies>     
        <!-- We're using H2s MVStore for this -->
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
    </dependencies>
</project>
