- 添加了 IM API 接口定义,包含登录、消息、群组、好友等接口 - 实现了 ImSDK 核心功能,支持发送各类消息和管理会话 - 集成了 WebSocket 连接管理和自动重连机制 - 添加了本地联系人缓存并优化对话标题显示逻辑 - 实现了 HarmonyOS 平台 HTTP 客户端基础功能
44 行
1.5 KiB
XML
44 行
1.5 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>
|
|
<groupId>com.xuqm</groupId>
|
|
<artifactId>xuqmgroup-server-parent</artifactId>
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>im-sdk</artifactId>
|
|
<name>im-sdk</name>
|
|
<description>Java SDK for XuqmGroup IM service and REST APIs</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.xuqm</groupId>
|
|
<artifactId>common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>xuqm-maven-releases</id>
|
|
<url>https://nexus.xuqinmin.com/repository/maven-releases/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>xuqm-maven-snapshots</id>
|
|
<url>https://nexus.xuqinmin.com/repository/maven-snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
</project>
|