pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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>cn.hfln.framework</groupId>
  7. <artifactId>hfln-framework-design-starter</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mqtt-spring-boot-starter</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.eclipse.paho</groupId>
  19. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  20. <version>1.2.5</version>
  21. </dependency>
  22. <!-- <dependency>-->
  23. <!-- <groupId>com.hivemq</groupId>-->
  24. <!-- <artifactId>hivemq-mqtt-client</artifactId>-->
  25. <!-- <version>1.2.1</version>-->
  26. <!-- </dependency>-->
  27. <!-- slf4j: 2.x -->
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>slf4j-api</artifactId>
  31. <version>1.7.36</version>
  32. </dependency>
  33. <!-- spring-boot: 2.x -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-autoconfigure</artifactId>
  37. </dependency>
  38. <!-- optional: configuration-processor -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-configuration-processor</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. <!-- optional: jackson -->
  45. <dependency>
  46. <groupId>com.fasterxml.jackson.core</groupId>
  47. <artifactId>jackson-databind</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.junit.jupiter</groupId>
  51. <artifactId>junit-jupiter</artifactId>
  52. <version>5.9.0</version>
  53. <optional>true</optional>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-test</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <!-- Spring Boot Test -->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-test</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <!-- JUnit Jupiter -->
  68. <dependency>
  69. <groupId>org.junit.jupiter</groupId>
  70. <artifactId>junit-jupiter-api</artifactId>
  71. <version>5.6.3</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.junit.jupiter</groupId>
  76. <artifactId>junit-jupiter-engine</artifactId>
  77. <version>5.6.3</version>
  78. <scope>test</scope>
  79. </dependency>
  80. <!-- Logging -->
  81. <dependency>
  82. <groupId>ch.qos.logback</groupId>
  83. <artifactId>logback-classic</artifactId>
  84. <version>1.2.11</version>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>ch.qos.logback</groupId>
  89. <artifactId>logback-core</artifactId>
  90. <version>1.2.11</version>
  91. <scope>test</scope>
  92. </dependency>
  93. </dependencies>
  94. </project>