<?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>io.milton</groupId>
        <artifactId>milton-cloud</artifactId>
        <version>1.0.5</version>
    </parent>
    <artifactId>milton-cloud-sync</artifactId>
    <packaging>jar</packaging>
    <dependencies>       
        <dependency>
            <groupId>io.milton</groupId>
            <artifactId>milton-client</artifactId>
            <version>${milton.version}</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.9</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>hashsplit4j</groupId>
            <artifactId>hashsplit4j-lib</artifactId>
            <version>2.1.1</version>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <version>1.2.144</version>
        </dependency>        
        <dependency>
            <groupId>com.ettrema</groupId>
            <artifactId>endrick-jdbc</artifactId>
            <version>${endrick.version}</version>
            <exclusions>
                <exclusion>
                    <artifactId>jcs</artifactId>
                    <groupId>jcs</groupId>
                </exclusion>
            </exclusions>
        </dependency>       
    </dependencies>    
</project>

