<?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>
    <name>cjlab-boot-starter-mysql</name>
    <description>Spring Boot starter for relational database connectivity and datasource setup.</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>
    <artifactId>cjlab-boot-starter-mysql</artifactId>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

    <dependencies>
        <!-- BondtechBoot Starter Common -->
        <dependency>
            <groupId>io.github.ccj-cxy</groupId>
            <artifactId>cjlab-boot-starter-common</artifactId>
            <version>${project.version}</version>
        </dependency>

        <!-- Mysql Connector -->
        <dependency>
            <groupId>com.mysql</groupId>
            <artifactId>mysql-connector-j</artifactId>
        </dependency>
        <!-- DB 相关 -->
        <dependency>
            <groupId>com.oracle.database.jdbc</groupId>
            <artifactId>ojdbc8</artifactId>
        </dependency>
        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
        </dependency>
        <dependency>
            <groupId>com.microsoft.sqlserver</groupId>
            <artifactId>mssql-jdbc</artifactId>
        </dependency>

        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>
