2026-04-24 21:52:52 +08:00

65 lines
2.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-system</artifactId>
<version>${revision}</version>
</parent>
<!-- 项目名称 -->
<artifactId>xiaomayi-system-api</artifactId>
<!-- 项目打包类型JAR包 -->
<packaging>jar</packaging>
<!-- 项目名称 -->
<name>xiaomayi-system-api</name>
<!-- 项目描述 -->
<description>小蚂蚁云系统服务API模块</description>
<!-- 依赖声明 -->
<dependencies>
<!-- 核心类库 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-core</artifactId>
</dependency>
<!-- Mybatis 持久层框架 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-mybatis</artifactId>
</dependency>
<!-- Excel 文件操作 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-excel</artifactId>
</dependency>
<!-- 文件日志处理 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-file</artifactId>
</dependency>
<!-- PDF 文件操作 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-pdf</artifactId>
</dependency>
<!-- XSS 防攻击 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-xss</artifactId>
</dependency>
<!-- Feign 远程服务调用 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-feign</artifactId>
</dependency>
<!-- 短信发送 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-sms</artifactId>
</dependency>
</dependencies>
</project>