<?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 https://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <packaging>jar</packaging>

    <parent>
        <groupId>cn.tuheishan</groupId>
        <artifactId>meteor-starter</artifactId>
        <version>1.0.2</version>
    </parent>

    <artifactId>meteor-boot-starter-database</artifactId>
    <name>${project.artifactId}</name>
    <description>${project.artifactId}</description>

    <!-- 版本约束，解决兼容性问题 -->
    <properties>
    </properties>

    <dependencies>
        <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.4.2</version>
        </dependency>
        <!-- 分页插件 -->
        <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.3.0</version>
        </dependency>
        <!-- mysql -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>cn.tuheishan</groupId>
            <artifactId>meteor-boot-starter-launch</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>cn.tuheishan</groupId>
            <artifactId>meteor-boot-starter-web</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>cn.tuheishan</groupId>
            <artifactId>meteor-boot-starter-auth</artifactId>
            <version>${project.version}</version>
        </dependency>
    </dependencies>

</project>
