mirror of https://gitee.com/stylefeng/roses
50 lines
1.5 KiB
XML
50 lines
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>kernel-s-message</artifactId>
|
|
<version>7.6.0</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>message-sdk-db</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
|
|
<!--消息模块的api-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>message-api</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
<!--数据库sdk-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>db-sdk-mp</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
<!--发送消息需要用到用户相关的接口-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>sys-api</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
<!--引入WebSocket模块-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>socket-api</artifactId>
|
|
<version>${roses.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|