<?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>
  <groupId>io.github.chenfd99</groupId>
  <artifactId>mybatis-pagination-spring-boot-sample</artifactId>
  <version>1.13</version>
  <name>mybatis-pagination-spring-boot-sample</name>
  <description>Mybatis Pagination Spring Boot Sample 分页插件示例</description>
  <url>https://gitee.com/chenfd99_admin/mybatis-pagination</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://mit-license.org/</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>chenfd99</name>
      <email>chenfd99@qq.com</email>
      <url>https://github.com/chenfd99</url>
    </developer>
  </developers>
  <scm>
    <connection>https://github.com/chenfd99/mybatis-pagination-spring-boot-sample</connection>
    <developerConnection>https://github.com/chenfd99/mybatis-pagination-spring-boot-sample</developerConnection>
    <url>https://github.com/chenfd99/mybatis-pagination-spring-boot-sample</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter</artifactId>
      <version>4.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-data-commons</artifactId>
      <version>4.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-aspectj</artifactId>
      <version>4.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.mybatis.spring.boot</groupId>
      <artifactId>mybatis-spring-boot-starter</artifactId>
      <version>4.0.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.h2database</groupId>
      <artifactId>h2</artifactId>
      <version>2.4.240</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>io.github.chenfd99</groupId>
      <artifactId>mybatis-pagination-spring-boot-starter</artifactId>
      <version>1.13</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.42</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
  </dependencies>
</project>
