chore(pom.xml): 添加websocket依赖

This commit is contained in:
haoxr
2023-06-01 23:56:28 +08:00
parent 95a3ade886
commit 9b8de0b35e

View File

@@ -6,7 +6,7 @@
<groupId>com.youlai</groupId> <groupId>com.youlai</groupId>
<artifactId>youlai-boot</artifactId> <artifactId>youlai-boot</artifactId>
<version>2.2.1</version> <version>2.3.0</version>
<description>基于 SpringBoot3 快速构建的权限管理系统</description> <description>基于 SpringBoot3 快速构建的权限管理系统</description>
<parent> <parent>
@@ -181,6 +181,7 @@
<version>${minio.version}</version> <version>${minio.version}</version>
</dependency> </dependency>
<!-- 验证码 -->
<dependency> <dependency>
<groupId>com.github.whvcse</groupId> <groupId>com.github.whvcse</groupId>
<artifactId>easy-captcha</artifactId> <artifactId>easy-captcha</artifactId>
@@ -201,6 +202,12 @@
<version>${redisson.version}</version> <version>${redisson.version}</version>
</dependency> </dependency>
<!-- websocket -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
</dependencies> </dependencies>
<build> <build>