64 lines
2.0 KiB
XML
64 lines
2.0 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>com.wms</groupId>
|
|
<artifactId>Wms</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<artifactId>wms-message</artifactId>
|
|
<description>
|
|
消息模块
|
|
</description>
|
|
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.wms</groupId>
|
|
<artifactId>wms-common</artifactId>
|
|
</dependency>
|
|
|
|
<!-- netty-->
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<!--<version>5.0.0.Alpha2</version>-->
|
|
<version>4.1.43.Final</version>
|
|
</dependency>
|
|
|
|
<!--mqtt依赖-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-integration</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-stream</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-mqtt</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.wms</groupId>
|
|
<artifactId>wms-framework</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>javax.mail</artifactId>
|
|
<version>1.6.2</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |