1234567891011121314151617181920212223242526272829303132333435363738 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common</artifactId>
- <version>0.4.5-SNAPSHOT</version>
- </parent>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-message-bus</artifactId>
- <version>0.4.5-SNAPSHOT</version>
- <packaging>pom</packaging>
- <description>消息队列适配模块,用于提供默认消息队列和适配不同消息队列接入</description>
- <modules>
- <module>iot-message-core</module>
- <module>iot-message-event-bus</module>
- <module>iot-message-rocketmq</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-core</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-core</artifactId>
- </dependency>
- </dependencies>
- </project>
|