<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.beangle.data</groupId>
    <artifactId>beangle-data-parent_2.13</artifactId>
    <version>5.3.13</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>beangle-data-jdbc_2.13</artifactId>
  <packaging>jar</packaging>
  <name>Beangle Data JDBC</name>

  <properties>
    <bundle.symbolicName>org.beangle.data.jdbc</bundle.symbolicName>
    <bundle.namespace>org.beangle.data.jdbc</bundle.namespace>
  </properties>

  <dependencies>
    <dependency>
      <groupId>com.h2database</groupId>
      <artifactId>h2</artifactId>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.postgresql</groupId>
      <artifactId>postgresql</artifactId>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.hsqldb</groupId>
      <artifactId>hsqldb</artifactId>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.zaxxer</groupId>
      <artifactId>HikariCP</artifactId>
      <optional>true</optional>
    </dependency>
  </dependencies>
</project>
