<?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>
|
<groupId>com.iailab</groupId>
|
<artifactId>iailab-framework</artifactId>
|
<version>${revision}</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
<artifactId>iailab-common-websocket</artifactId>
|
<packaging>jar</packaging>
|
|
<name>${project.artifactId}</name>
|
<description>WebSocket 框架,支持多节点的广播</description>
|
<url>http://172.16.8.100:8888/summary/iailab-plat.git</url>
|
|
|
<dependencies>
|
<dependency>
|
<groupId>com.iailab</groupId>
|
<artifactId>iailab-common</artifactId>
|
</dependency>
|
|
<!-- Web 相关 -->
|
<dependency>
|
<!-- 为什么是 websocket 依赖 security 呢?而不是 security 拓展 websocket 呢?
|
因为 websocket 和 LoginUser 当前登录的用户有一定的相关性,具体可见 WebSocketSessionManagerImpl 逻辑。
|
如果让 security 拓展 websocket 的话,会导致 websocket 组件的封装很散,进而增大理解成本。
|
-->
|
<groupId>com.iailab</groupId>
|
<artifactId>iailab-common-security</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
</dependency>
|
|
<!-- 消息队列相关 -->
|
<dependency>
|
<groupId>com.iailab</groupId>
|
<artifactId>iailab-common-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>com.iailab</groupId>
|
<artifactId>iailab-common-biz-tenant</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
<version>3.3.0</version>
|
<executions>
|
<execution>
|
<phase>package</phase>
|
<goals>
|
<goal>single</goal>
|
</goals>
|
</execution>
|
</executions>
|
<configuration>
|
<descriptorRefs>
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
</descriptorRefs>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|