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>
|