pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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. <groupId>com.lutao</groupId>
  7. <artifactId>cloud-common</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <groupId>com.lutao</groupId>
  11. <artifactId>cloud-common-mqtt</artifactId>
  12. <name>cloud-common-mqtt</name>
  13. <description>mqtt 组件</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.lutao</groupId>
  17. <artifactId>cloud-common-data</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.lutao</groupId>
  21. <artifactId>cloud-mqtt-codec</artifactId>
  22. <version>1.0.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.t-io</groupId>
  26. <artifactId>tio-websocket-server</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. </dependency>
  32. </dependencies>
  33. </project>