<?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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>cn.sunxiansheng</groupId>
        <artifactId>sunrays-framework</artifactId>
        <version>1.1.0</version>
    </parent>

    <artifactId>sunrays-common</artifactId>
    <!-- 项目名 -->
    <name>${project.groupId}:${project.artifactId}</name>
    <!-- 简单描述 -->
    <description>统一管理common子模块的打包，子模块提供一些通用组件的封装</description>

    <!-- 统一管理子模块 -->
    <packaging>pom</packaging>
    <modules>
        <module>common-web-starter</module>
        <module>common-mybatis-plus-starter</module>
        <module>common-log4j2-starter</module>
        <module>common-tool-starter</module>
        <module>common-validation-starter</module>
        <module>common-exception-starter</module>
        <module>common-test-starter</module>
        <module>common-minio-starter</module>
        <module>common-redis-starter</module>
        <module>common-openai-starter</module>
        <module>common-rabbitmq-starter</module>
        <module>common-mail-starter</module>
        <module>common-env-starter</module>
        <module>common-security-starter</module>
    </modules>

    <dependencies>
        <!-- SLF4J API -->
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <!-- SpringBoot自动配置 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
        </dependency>
    </dependencies>
</project>