<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>org.syncloud</groupId>
      <artifactId>syncloud-core-parent</artifactId>
      <version>0.1</version>
     <relativePath>../../pom.xml</relativePath> 
   </parent>
    
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.syncloud</groupId>
    <artifactId>syncloud-dao-sqljet</artifactId>
    
    <dependencies>
        <dependency>
            <groupId>org.syncloud</groupId>
            <artifactId>syncloud-core</artifactId>
            <version>0.1</version>
        </dependency>
        <dependency>
            <groupId>org.syncloud</groupId>
            <artifactId>syncloud-dao-base</artifactId>
            <version>0.1</version>
        </dependency>
        <dependency>
            <groupId>org.syncloud</groupId>
            <artifactId>syncloud-dao-base</artifactId>
            <version>0.1</version>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.tmatesoft.sqljet</groupId>
            <artifactId>sqljet</artifactId>
            <version>1.1.1</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <type>jar</type>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
