<?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.xmzs</groupId>
|
<artifactId>ruoyi-common</artifactId>
|
<version>${revision}</version>
|
<relativePath>../pom.xml</relativePath>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>ruoyi-common-chat</artifactId>
|
|
<description>
|
ruoyi-common-chat 模块
|
</description>
|
|
<properties>
|
<retrofit2.version>2.9.0</retrofit2.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>com.xmzs</groupId>
|
<artifactId>ruoyi-common-core</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.xmzs</groupId>
|
<artifactId>ruoyi-common-json</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.xmzs</groupId>
|
<artifactId>ruoyi-common-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.xmzs</groupId>
|
<artifactId>ruoyi-common-satoken</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.squareup.retrofit2</groupId>
|
<artifactId>retrofit</artifactId>
|
<version>${retrofit2.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.squareup.retrofit2</groupId>
|
<artifactId>converter-jackson</artifactId>
|
<version>${retrofit2.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.squareup.retrofit2</groupId>
|
<artifactId>adapter-rxjava2</artifactId>
|
<version>${retrofit2.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.knuddels</groupId>
|
<artifactId>jtokkit</artifactId>
|
<version>0.5.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>5.8.12</version>
|
</dependency>
|
</dependencies>
|
</project>
|