<?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">
    <parent>
        <groupId>io.github.chenfd99</groupId>
        <artifactId>mybatis-pagination-parent</artifactId>
        <version>1.0</version>
    </parent>

    <name>mybatis-pagination</name>
    <description>Mybatis Pagination 分页插件</description>
    <url>https://gitee.com/chenfd99_admin/mybatis-pagination</url>

    <modelVersion>4.0.0</modelVersion>
    <artifactId>mybatis-pagination</artifactId>
    <packaging>jar</packaging>


    <dependencies>
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-commons</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>


    <developers>
        <developer>
            <name>chenfd99</name>
            <email>chenfd99@qq.com</email>
            <url>https://github.com/chenfd99</url>
        </developer>
    </developers>
    <scm>
        <url>https://github.com/chenfd99</url>
        <connection>https://github.com/chenfd99</connection>
        <developerConnection>https://github.com/chenfd99</developerConnection>
    </scm>
    <licenses>
        <license>
            <name>MIT License</name>
            <url>https://mit-license.org/</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

</project>