pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>iotkit-parent</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.4.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>pom</packaging>
  12. <artifactId>iot-message-bus</artifactId>
  13. <modules>
  14. <module>iot-message-core</module>
  15. <module>iot-vertx-event-bus</module>
  16. <module>iot-message-rocketmq</module>
  17. </modules>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.projectlombok</groupId>
  21. <artifactId>lombok</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.slf4j</groupId>
  25. <artifactId>slf4j-api</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.vertx</groupId>
  29. <artifactId>vertx-core</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>cc.iotkit</groupId>
  33. <artifactId>iot-common</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </project>