.flattened-pom.xml 1.3 KB

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