pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>iot-common</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>pom</packaging>
  12. <description>
  13. 消息队列适配模块,用于提供默认消息队列和适配不同消息队列接入
  14. </description>
  15. <artifactId>iot-message-bus</artifactId>
  16. <modules>
  17. <module>iot-message-core</module>
  18. <module>iot-message-event-bus</module>
  19. <module>iot-message-rocketmq</module>
  20. </modules>
  21. <dependencies>
  22. <dependency>
  23. <groupId>cc.iotkit</groupId>
  24. <artifactId>iot-common-core</artifactId>
  25. </dependency>
  26. <!--====================第三方库===================-->
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.slf4j</groupId>
  33. <artifactId>slf4j-api</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.vertx</groupId>
  37. <artifactId>vertx-core</artifactId>
  38. </dependency>
  39. </dependencies>
  40. </project>