<?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>
        <artifactId>xmagic-boot-starter-parent</artifactId>
        <groupId>tech.xmagic</groupId>
        <version>1.0.6</version>
        <!--        <version>1.0.4-SNAPSHOT</version>-->
        <relativePath/>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>xmagic-snowflake-spring-boot-starter</artifactId>
    <description>雪花算法起步依赖</description>
<!--    <version>1.0.4</version>-->
    <properties>
        <xmagic-zookeeper-spring-boot-starter.version>${project.version}</xmagic-zookeeper-spring-boot-starter.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>tech.xmagic</groupId>
            <artifactId>xmagic-zookeeper-spring-boot-starter</artifactId>
            <version>${xmagic-zookeeper-spring-boot-starter.version}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>net.dreamlu</groupId>
            <artifactId>mica-auto</artifactId>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>