pom.xml 985 B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>fastbee-gateway</artifactId>
  7. <groupId>com.fastbee</groupId>
  8. <version>3.8.5</version>
  9. <relativePath>./fastbee-gateway/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>fastbee-mq</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.fastbee</groupId>
  15. <artifactId>fastbee-protocol-collect</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cn.hutool</groupId>
  19. <artifactId>hutool-all</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fastbee</groupId>
  23. <artifactId>fastbee-mqtt-client</artifactId>
  24. <version>3.8.5</version>
  25. <scope>compile</scope>
  26. </dependency>
  27. </dependencies>
  28. </project>