123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?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>org.ruoyi</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>org.ruoyi</groupId>
- <artifactId>ruoyi-common-core</artifactId>
- </dependency>
- <!-- 序列化模块 -->
- <dependency>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-common-json</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-common-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>org.ruoyi</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>
|