<?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>
        <groupId>cn.bootx.platform</groupId>
        <artifactId>bootx-services</artifactId>
        <version>1.3.2</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>service-iam</artifactId>
    <description>身份识别与访问管理</description>

    <dependencies>
        <!-- mysql -->
        <dependency>
            <groupId>com.mysql</groupId>
            <artifactId>mysql-connector-j</artifactId>
            <scope>runtime</scope>
        </dependency>

        <!-- mp -->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
        </dependency>

        <!-- 认证模块 -->
        <dependency>
            <groupId>cn.bootx.platform</groupId>
            <artifactId>common-starter-auth</artifactId>
        </dependency>

        <!-- 基础功能模块 -->
        <dependency>
            <groupId>cn.bootx.platform</groupId>
            <artifactId>service-baseapi</artifactId>
            <version>${bootx-platform.version}</version>
        </dependency>
        <!-- 审计日志 -->
        <dependency>
            <groupId>cn.bootx.platform</groupId>
            <artifactId>common-starter-audit-log</artifactId>
        </dependency>
        <!-- 超级查询器 -->
        <dependency>
            <groupId>cn.bootx.platform</groupId>
            <artifactId>common-super-query</artifactId>
        </dependency>
        <!-- websocket -->
        <dependency>
            <groupId>cn.bootx.platform</groupId>
            <artifactId>common-websocket</artifactId>
        </dependency>
        <!-- 钉钉平台 -->
        <dependency>
            <groupId>cn.bootx.platform</groupId>
            <artifactId>common-starter-dingtalk</artifactId>
        </dependency>
        <!-- 微信公众平台 -->
        <dependency>
            <groupId>cn.bootx.platform</groupId>
            <artifactId>common-starter-wechat</artifactId>
        </dependency>
    </dependencies>

</project>
