<?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>org.dashbuilder</groupId>
    <artifactId>dashbuilder-backend</artifactId>
    <version>0.6.0.Beta2</version>
  </parent>

  <artifactId>dashbuilder-dataset-sql-tests</artifactId>
  <packaging>pom</packaging>

  <name>Dashbuilder SQL Tests</name>

  <!--
      Every test module has deps against a JDBC driver and a server instance.
      This is the main reason DB integration tests are not part of the build.
  -->
  <!--modules>
    <module>dashbuilder-dataset-sql-tests-h2</module>
    <module>dashbuilder-dataset-sql-tests-mysql</module>
    <module>dashbuilder-dataset-sql-tests-mariadb</module>
    <module>dashbuilder-dataset-sql-tests-postgres</module>
    <module>dashbuilder-dataset-sql-tests-oracle</module>
    <module>dashbuilder-dataset-sql-tests-sqlserver</module>
    <module>dashbuilder-dataset-sql-tests-db2</module>
    <module>dashbuilder-dataset-sql-tests-sybase</module>
    <module>dashbuilder-dataset-sql-tests-monetdb</module>
  </modules-->

  <dependencies>

    <dependency>
      <groupId>org.dashbuilder</groupId>
      <artifactId>dashbuilder-dataset-api</artifactId>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.dashbuilder</groupId>
      <artifactId>dashbuilder-dataset-core</artifactId>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.dashbuilder</groupId>
      <artifactId>dashbuilder-dataset-sql</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.dashbuilder</groupId>
      <artifactId>dashbuilder-dataset-sql</artifactId>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.easytesting</groupId>
      <artifactId>fest-assert-core</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <scope>test</scope>
    </dependency>

  </dependencies>

</project>
