<?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>bootx-services</artifactId>
        <groupId>cn.bootx.platform</groupId>
        <version>1.3.2</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>service-notice</artifactId>

    <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>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-mail</artifactId>
        </dependency>

        <!-- 模板引擎 -->
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-engine-core</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>

        <!-- ws -->
        <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>

        <!-- 企业微信 -->
        <dependency>
            <groupId>cn.bootx.platform</groupId>
            <artifactId>common-starter-wecom</artifactId>
        </dependency>
    </dependencies>
</project>
