2026-04-24 21:50:28 +08:00

153 lines
5.2 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>com.xiaomayi</groupId>
<artifactId>xiaomayi-web</artifactId>
<version>${revision}</version>
</parent>
<artifactId>xiaomayi-web-biz</artifactId>
<!-- 项目打包类型JAR包 -->
<packaging>jar</packaging>
<!-- 项目名称 -->
<name>xiaomayi-web-biz</name>
<!-- 项目描述 -->
<description>小蚂蚁云网站服务BIZ模块</description>
<!-- 依赖声明 -->
<dependencies>
<!-- 网站服务API模块 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-web-api</artifactId>
</dependency>
<!-- 系统服务API模块 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-system-api</artifactId>
</dependency>
<!-- 用户服务API模块 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-user-api</artifactId>
</dependency>
<!-- 订单服务API模块 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-order-api</artifactId>
</dependency>
<!-- 商品服务API模块 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-goods-api</artifactId>
</dependency>
<!-- 核心类库 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-core</artifactId>
</dependency>
<!-- Nacos 注册配置中心 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-nacos</artifactId>
</dependency>
<!-- Seata 分布式事务 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-seata</artifactId>
</dependency>
<!-- Mybatis 持久层框架 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-mybatis</artifactId>
</dependency>
<!-- 验证码 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-captcha</artifactId>
</dependency>
<!-- 操作日志 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-logger</artifactId>
</dependency>
<!-- API 文档解析 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-springdoc</artifactId>
</dependency>
<!-- Excel 文件操作 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-excel</artifactId>
</dependency>
<!-- 文件日志处理 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-file</artifactId>
</dependency>
<!-- 短信发送 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-sms</artifactId>
</dependency>
<!-- 邮件发送 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-email</artifactId>
</dependency>
<!-- Ip2Region地址库 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-ip2region</artifactId>
</dependency>
<!-- 阿里云OSS云存储 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-oss</artifactId>
</dependency>
<!-- 幂等性 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-idempotent</artifactId>
</dependency>
<!-- Ffmpeg 多媒体类库 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-ffmpeg</artifactId>
</dependency>
<!-- JWT令牌 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-jwttoken</artifactId>
</dependency>
<!-- Spring Boot Admin 监控客户端 -->
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
</dependency>
</dependencies>
<!-- 构建打包配置 -->
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>