68 lines
2.4 KiB
XML
68 lines
2.4 KiB
XML
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<artifactId>framework</artifactId>
|
||
|
<groupId>cd.casic.boot</groupId>
|
||
|
<version>${revision}</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
<name>${project.artifactId}</name>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>cd.casic.boot</groupId>
|
||
|
<artifactId>commons</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cd.casic.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-security</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 消息队列相关 -->
|
||
|
<dependency>
|
||
|
<groupId>cd.casic.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-mq</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.kafka</groupId>
|
||
|
<artifactId>spring-kafka</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.amqp</groupId>
|
||
|
<artifactId>spring-rabbit</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.rocketmq</groupId>
|
||
|
<artifactId>rocketmq-spring-boot-starter</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 业务组件 -->
|
||
|
<dependency>
|
||
|
<!-- 依赖 tenant 组件?因为广播某个类型的用户时候,需要根据租户过滤下,避免广播到别的租户!-->
|
||
|
<groupId>cd.casic.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-biz-tenant</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Test 测试相关 -->
|
||
|
<dependency>
|
||
|
<groupId>cd.casic.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|