<?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.gitlab.spring-cattle.framework</groupId>
    <artifactId>cattle-db</artifactId>
    <version>1.0.5</version>
  </parent>
  <artifactId>cattle-db-orm</artifactId>
  <version>1.0.5</version>
  <description>Cattle framework db ORM component pom</description>
  <url>https://gitlab.com/spring-cattle/cattle-framework</url>
  <organization>
    <name>Spring Cattle Team</name>
    <url>https://gitlab.com/spring-cattle</url>
  </organization>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>orange</name>
      <organization>Spring Cattle Team</organization>
      <organizationUrl>https://gitlab.com/spring-cattle</organizationUrl>
      <roles>
        <role>developer</role>
      </roles>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://gitlab.com/spring-cattle/cattle-framework.git</connection>
    <developerConnection>scm:git:ssh://git@gitlab.com/spring-cattle/cattle-framework.git</developerConnection>
    <url>https://gitlab.com/spring-cattle/cattle-framework</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.github.jsqlparser</groupId>
      <artifactId>jsqlparser</artifactId>
    </dependency>
    <dependency>
      <groupId>org.dom4j</groupId>
      <artifactId>dom4j</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-jdbc</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-compress</artifactId>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.uuid</groupId>
      <artifactId>java-uuid-generator</artifactId>
    </dependency>
    <dependency>
      <groupId>com.github.ben-manes.caffeine</groupId>
      <artifactId>caffeine</artifactId>
    </dependency>
    <dependency>
      <groupId>com.google.inject</groupId>
      <artifactId>guice</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>io.gitlab.spring-cattle.framework</groupId>
      <artifactId>cattle-db-datasource</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>
</project>
