﻿<?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-auth</artifactId>
    <packaging>jar</packaging>

    <name>Rocks Spring Boot Starter Auth</name>
    <description>Rocks 认证授权 Starter（JWT + RBAC，依赖 core starter）</description>

    <dependencies>
        <dependency>
            <groupId>io.gitee.smartunity</groupId>
            <artifactId>rocks-spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>io.gitee.smartunity</groupId>
            <artifactId>rocks-auth</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
        </dependency>
    </dependencies>

</project>
