pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.lutao</groupId>
  7. <artifactId>cloud-common</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>cloud-mqtt-spring-boot-starter</artifactId>
  12. <name>${project.artifactId}</name>
  13. <properties>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.lutao</groupId>
  18. <artifactId>cloud-common-mqtt</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-autoconfigure</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <!-- 对接 micrometer 方便指标收集 begin -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-actuator-autoconfigure</artifactId>
  30. <scope>provided</scope>
  31. </dependency>
  32. <!-- 对接 micrometer 方便指标收集 end -->
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <!-- mica-auto 自动生成 spring.factories、spring-devtools.properties 配置 -->
  39. <dependency>
  40. <groupId>net.dreamlu</groupId>
  41. <artifactId>mica-auto</artifactId>
  42. <version>2.1.3</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.lutao</groupId>
  47. <artifactId>cloud-mqtt-codec</artifactId>
  48. <version>1.0.0</version>
  49. </dependency>
  50. </dependencies>
  51. </project>