pom.xml 992 B

12345678910111213141516171819202122232425262728
  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>gateway-boot</artifactId>
  12. <description>网关模块</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.fastbee</groupId>
  16. <artifactId>fastbee-mq</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.fastbee</groupId>
  20. <artifactId>fastbee-mqtt-client</artifactId>
  21. <version>3.8.5</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. </dependencies>
  25. </project>