<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>io.github.microsphere-projects</groupId>
    <artifactId>microsphere-bom</artifactId>
    <version>0.2.8</version>
  </parent>
  <groupId>io.github.microsphere-projects</groupId>
  <artifactId>microsphere-javadb-bom</artifactId>
  <version>0.2.8</version>
  <packaging>pom</packaging>
  <name>Microsphere :: BOM :: Java DB</name>
  <description>Microsphere BOM of Java DB</description>
  <url>https://github.com/microsphere-projects/microsphere-bom/microsphere-javadb-bom</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>mercyblitz</id>
      <name>Mercy Ma</name>
      <email>mercyblitz@gmail.com</email>
      <organization>Microsphere</organization>
      <roles>
        <role>lead</role>
        <role>architect</role>
        <role>developer</role>
      </roles>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@github.com/microsphere-projects/microsphere-bom.git/microsphere-javadb-bom/microsphere-javadb-bom</connection>
    <developerConnection>scm:git:ssh://git@github.com/microsphere-projects/microsphere-bom.git/microsphere-javadb-bom/microsphere-javadb-bom</developerConnection>
    <url>git@github.com/microsphere-projects/microsphere-bom.git/microsphere-javadb-bom</url>
  </scm>
  <properties>
    <sqlite-jdbc.version>3.53.2.0</sqlite-jdbc.version>
    <h2.version>2.4.240</h2.version>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.xerial</groupId>
        <artifactId>sqlite-jdbc</artifactId>
        <version>${sqlite-jdbc.version}</version>
      </dependency>
      <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <version>${h2.version}</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <profiles>
    <profile>
      <id>java8</id>
      <activation>
        <jdk>(,1.8]</jdk>
      </activation>
      <properties>
        <h2.version>1.4.200</h2.version>
      </properties>
    </profile>
  </profiles>
</project>
