<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>io.github.ccj-cxy</groupId>
        <artifactId>cjlab-common</artifactId>
        <version>1.0.4</version>
    </parent>

    <artifactId>cjlab-sql-converter</artifactId>
    <name>cjlab-sql-converter</name>
    <description>SQL dialect conversion utilities built on Apache Calcite.</description>
    <url>https://github.com/ccj-cxy/common</url>

    <licenses>
        <license>
            <name>Apache License 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <id>ccj-cxy</id>
            <name>Changjun Cai</name>
        </developer>
    </developers>

    <scm>
        <connection>scm:git:https://github.com/ccj-cxy/common.git</connection>
        <developerConnection>scm:git:ssh://git@github.com/ccj-cxy/common.git</developerConnection>
        <url>https://github.com/ccj-cxy/common</url>
    </scm>
    <properties>
        <calcite.version>1.42.0</calcite.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.apache.calcite</groupId>
            <artifactId>calcite-core</artifactId>
            <version>${calcite.version}</version>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
