﻿<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>io.gitee.smartunity</groupId>
        <artifactId>rocks-platform</artifactId>
        <version>1.0.0</version>
    </parent>


    <properties>
        <maven.deploy.skip>false</maven.deploy.skip>
    </properties>

    <artifactId>rocks-spring-boot-starter</artifactId>
    <packaging>jar</packaging>

    <name>Rocks Spring Boot Starter</name>
    <description>Rocks 核心 Starter（DB / Cache / Log / Sight，不含 Auth / Flow）</description>

    <dependencies>
        <dependency>
            <groupId>io.gitee.smartunity</groupId>
            <artifactId>rocks-common</artifactId>
        </dependency>
        <dependency>
            <groupId>io.gitee.smartunity</groupId>
            <artifactId>rocks-db-adaptor</artifactId>
        </dependency>
        <dependency>
            <groupId>io.gitee.smartunity</groupId>
            <artifactId>rocks-cache-adaptor</artifactId>
        </dependency>
        <dependency>
            <groupId>io.gitee.smartunity</groupId>
            <artifactId>rocks-log</artifactId>
        </dependency>
        <dependency>
            <groupId>io.gitee.smartunity</groupId>
            <artifactId>rocks-sight</artifactId>
        </dependency>
        <!-- Sight 健康检查依赖 MQ / Job 适配层 -->
        <dependency>
            <groupId>io.gitee.smartunity</groupId>
            <artifactId>rocks-mq-adaptor</artifactId>
        </dependency>
        <dependency>
            <groupId>io.gitee.smartunity</groupId>
            <artifactId>rocks-job-adaptor</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>

</project>
