pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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>com.hfln.device</groupId>
  7. <artifactId>hfln-device-service</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>cn.hfln.framework</groupId>
  13. <artifactId>mqtt-spring-boot-starter</artifactId>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. <spring-integration.version>5.5.14</spring-integration.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.eclipse.paho</groupId>
  22. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  23. <version>1.2.5</version>
  24. </dependency>
  25. <!-- <dependency>-->
  26. <!-- <groupId>com.hivemq</groupId>-->
  27. <!-- <artifactId>hivemq-mqtt-client</artifactId>-->
  28. <!-- <version>1.2.1</version>-->
  29. <!-- </dependency>-->
  30. <!-- Spring Integration MQTT -->
  31. <dependency>
  32. <groupId>org.springframework.integration</groupId>
  33. <artifactId>spring-integration-mqtt</artifactId>
  34. <version>${spring-integration.version}</version>
  35. </dependency>
  36. <!-- Spring Integration Core -->
  37. <dependency>
  38. <groupId>org.springframework.integration</groupId>
  39. <artifactId>spring-integration-core</artifactId>
  40. <version>${spring-integration.version}</version>
  41. </dependency>
  42. <!-- Lombok -->
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <optional>true</optional>
  47. </dependency>
  48. <!-- slf4j: 2.x -->
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-api</artifactId>
  52. <version>1.7.36</version>
  53. </dependency>
  54. <!-- spring-boot: 2.x -->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-autoconfigure</artifactId>
  58. </dependency>
  59. <!-- optional: configuration-processor -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-configuration-processor</artifactId>
  63. <optional>true</optional>
  64. </dependency>
  65. <!-- optional: jackson -->
  66. <dependency>
  67. <groupId>com.fasterxml.jackson.core</groupId>
  68. <artifactId>jackson-databind</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.junit.jupiter</groupId>
  72. <artifactId>junit-jupiter</artifactId>
  73. <version>5.9.0</version>
  74. <optional>true</optional>
  75. <scope>test</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-test</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. <!-- Spring Boot Test -->
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-test</artifactId>
  86. <scope>test</scope>
  87. </dependency>
  88. <!-- JUnit Jupiter -->
  89. <dependency>
  90. <groupId>org.junit.jupiter</groupId>
  91. <artifactId>junit-jupiter-api</artifactId>
  92. <version>5.6.3</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.junit.jupiter</groupId>
  97. <artifactId>junit-jupiter-engine</artifactId>
  98. <version>5.6.3</version>
  99. <scope>test</scope>
  100. </dependency>
  101. <!-- Logging -->
  102. <dependency>
  103. <groupId>ch.qos.logback</groupId>
  104. <artifactId>logback-classic</artifactId>
  105. <version>1.2.11</version>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>ch.qos.logback</groupId>
  110. <artifactId>logback-core</artifactId>
  111. <version>1.2.11</version>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.mockito</groupId>
  116. <artifactId>mockito-core</artifactId>
  117. <version>4.5.1</version>
  118. <scope>test</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.mockito</groupId>
  122. <artifactId>mockito-junit-jupiter</artifactId>
  123. <version>4.5.1</version>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>net.bytebuddy</groupId>
  128. <artifactId>byte-buddy</artifactId>
  129. <version>1.12.10</version>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>net.bytebuddy</groupId>
  134. <artifactId>byte-buddy-agent</artifactId>
  135. <version>1.12.10</version>
  136. <scope>test</scope>
  137. </dependency>
  138. </dependencies>
  139. </project>