ShiShiYiBan/yudao-module-im/yudao-module-im-biz/pom.xml

68 lines
2.1 KiB
XML
Raw Normal View History

2024-03-12 17:01:37 +08:00
<?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>yudao-module-im</artifactId>
<groupId>cn.iocoder.boot</groupId>
2024-03-27 23:28:00 +08:00
<version>${revision}</version>
2024-03-12 17:01:37 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
2024-03-27 23:28:00 +08:00
<packaging>jar</packaging>
2024-03-12 17:01:37 +08:00
<artifactId>yudao-module-im-biz</artifactId>
2024-03-27 23:28:00 +08:00
<name>${project.artifactId}</name>
<description>
2024-03-12 17:01:37 +08:00
im 模块,主要实现 im 模块的业务逻辑。
</description>
2024-03-27 23:28:00 +08:00
<dependencies>
2024-03-12 17:01:37 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-module-im-api</artifactId>
<version>${revision}</version>
</dependency>
<!-- Web 相关 -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-security</artifactId>
</dependency>
2024-03-27 23:28:00 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-websocket</artifactId>
</dependency>
2024-03-12 17:01:37 +08:00
<!-- DB 相关 -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
</dependency>
<dependency>
<groupId>cn.iocoder.boot</groupId>
2024-03-27 23:28:00 +08:00
<artifactId>yudao-spring-boot-starter-redis</artifactId>
2024-03-12 17:01:37 +08:00
</dependency>
2024-03-21 12:51:03 +08:00
2024-03-27 23:28:00 +08:00
<!-- 工具类相关 -->
2024-03-12 17:01:37 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-excel</artifactId>
</dependency>
2024-03-27 23:28:00 +08:00
<!-- Test 测试相关 -->
2024-03-12 17:01:37 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
2024-03-27 23:28:00 +08:00
<artifactId>yudao-spring-boot-starter-test</artifactId>
2024-03-12 17:01:37 +08:00
</dependency>
2024-03-13 22:48:18 +08:00
2024-03-12 17:01:37 +08:00
</dependencies>
</project>