pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.4.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.kingfore</groupId>
  12. <artifactId>ali-iot-mqtt-temp-warning</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>ali-iot-mqtt-temp-warning</name>
  15. <description>测试mqtt设备接收</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  19. </properties>
  20. <dependencies>
  21. <!-- <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-actuator</artifactId>
  24. </dependency> -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.google.code.gson</groupId>
  31. <artifactId>gson</artifactId>
  32. <version>2.8.6</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-devtools</artifactId>
  37. <scope>runtime</scope>
  38. <optional>true</optional>
  39. </dependency>
  40. <!-- util for base64-->
  41. <dependency>
  42. <groupId>commons-codec</groupId>
  43. <artifactId>commons-codec</artifactId>
  44. <!-- <version>1.10</version> -->
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. <optional>true</optional>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>1.2.73</version>
  56. </dependency>
  57. <!-- 对mongodb的支持 -->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  61. <version>2.0.2.RELEASE</version>
  62. </dependency>
  63. <!-- 工具包 -->
  64. <dependency>
  65. <groupId>cn.hutool</groupId>
  66. <artifactId>hutool-all</artifactId>
  67. <version>5.3.7</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.aliyun</groupId>
  71. <artifactId>aliyun-java-sdk-core</artifactId>
  72. <version>[4.3.2,5.0.0)</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-test</artifactId>
  77. <scope>test</scope>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>org.junit.vintage</groupId>
  81. <artifactId>junit-vintage-engine</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-configuration-processor</artifactId>
  88. <optional>true</optional>
  89. </dependency>
  90. <!-- mqtt -->
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-integration</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.integration</groupId>
  97. <artifactId>spring-integration-stream</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.integration</groupId>
  101. <artifactId>spring-integration-mqtt</artifactId>
  102. </dependency>
  103. <!-- 如梦mqttclient-->
  104. <dependency>
  105. <groupId>net.dreamlu</groupId>
  106. <artifactId>mica-mqtt-client-spring-boot-starter</artifactId>
  107. <version>2.2.8</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.alibaba.fastjson2</groupId>
  111. <artifactId>fastjson2</artifactId>
  112. <version>2.0.26</version>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <finalName>ali-iot-mqtt-temp-warning</finalName>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-maven-plugin</artifactId>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. <repositories>
  125. <repository>
  126. <id>alimaven</id>
  127. <name>aliyun maven</name>
  128. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  129. <releases>
  130. <enabled>true</enabled>
  131. </releases>
  132. <snapshots>
  133. <enabled>false</enabled>
  134. </snapshots>
  135. </repository>
  136. </repositories>
  137. </project>