pom.xml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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-server</artifactId>
  7. <groupId>com.fastbee</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <artifactId>mqtt-broker</artifactId>
  11. <description>基于netty搭建的mqttBroker</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.fastbee</groupId>
  15. <artifactId>iot-server-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.fastbee</groupId>
  19. <artifactId>fastbee-mq</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fastbee</groupId>
  23. <artifactId>sip-server</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.fastbee</groupId>
  27. <artifactId>fastbee-mqtt-client</artifactId>
  28. </dependency>
  29. </dependencies>
  30. </project>