<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <artifactId>id-spring-boot-autoconfigure</artifactId>
  <version>2.7.0</version>

  <parent>
    <groupId>cn.404z</groupId>
    <artifactId>parent</artifactId>
    <version>1.3.0</version>
  </parent>

  <name>id-spring-boot-autoconfigure</name>
  <description>High Performance Snowflake ID Generator Springboot Autoconfigure 高性能雪花ID生成器SpringBoot自动配置</description>
  <url>https://github.com/ALI1416/id-spring-boot-autoconfigure</url>

  <scm>
    <url>git@github.com:ALI1416/id-spring-boot-autoconfigure.git</url>
    <connection>scm:git@github.com:ALI1416/id-spring-boot-autoconfigure.git</connection>
  </scm>

  <dependencies>
    <dependency>
      <groupId>cn.404z</groupId>
      <artifactId>id</artifactId>
      <version>2.7.0</version>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter</artifactId>
      <version>2.7.14</version>
      <scope>provided</scope>
    </dependency>
    <!-- 仅供编译使用 -->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-autoconfigure-processor</artifactId>
      <version>2.7.14</version>
      <optional>true</optional>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-configuration-processor</artifactId>
      <version>2.7.14</version>
      <optional>true</optional>
      <scope>provided</scope>
    </dependency>
    <!-- 仅供测试使用 -->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <version>2.7.14</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.28</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>