数据解析模块
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pom.xml 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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.iot.platform</groupId>
  7. <artifactId>wisdom-data</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>iot-platform</artifactId>
  13. <description>IoT储能运营平台</description>
  14. <dependencies>
  15. <!-- Spring Boot Web -->
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <!-- Spring Boot Validation -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-validation</artifactId>
  24. </dependency>
  25. <!-- Spring Boot Data Redis -->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. </dependency>
  30. <!-- Commons Pool2 (required by Lettuce connection pool) -->
  31. <dependency>
  32. <groupId>org.apache.commons</groupId>
  33. <artifactId>commons-pool2</artifactId>
  34. </dependency>
  35. <!-- Spring Boot AOP -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-aop</artifactId>
  39. </dependency>
  40. <!-- MyBatis -->
  41. <dependency>
  42. <groupId>org.mybatis.spring.boot</groupId>
  43. <artifactId>mybatis-spring-boot-starter</artifactId>
  44. <version>2.2.2</version>
  45. </dependency>
  46. <!-- Druid -->
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>druid-spring-boot-starter</artifactId>
  50. </dependency>
  51. <!-- PageHelper -->
  52. <dependency>
  53. <groupId>com.github.pagehelper</groupId>
  54. <artifactId>pagehelper-spring-boot-starter</artifactId>
  55. </dependency>
  56. <!-- Mysql驱动 -->
  57. <dependency>
  58. <groupId>com.mysql</groupId>
  59. <artifactId>mysql-connector-j</artifactId>
  60. <version>8.0.33</version>
  61. </dependency>
  62. <!-- TdEngine JDBC -->
  63. <dependency>
  64. <groupId>com.taosdata.jdbc</groupId>
  65. <artifactId>taos-jdbcdriver</artifactId>
  66. <version>3.3.2</version>
  67. </dependency>
  68. <!-- HikariCP (TdEngine 连接池) -->
  69. <dependency>
  70. <groupId>com.zaxxer</groupId>
  71. <artifactId>HikariCP</artifactId>
  72. </dependency>
  73. <!-- MQTT Paho -->
  74. <dependency>
  75. <groupId>org.eclipse.paho</groupId>
  76. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  77. <version>1.2.5</version>
  78. </dependency>
  79. <!-- Jackson -->
  80. <dependency>
  81. <groupId>com.fasterxml.jackson.core</groupId>
  82. <artifactId>jackson-databind</artifactId>
  83. </dependency>
  84. <!-- FastJSON2 -->
  85. <dependency>
  86. <groupId>com.alibaba.fastjson2</groupId>
  87. <artifactId>fastjson2</artifactId>
  88. <version>${fastjson.version}</version>
  89. </dependency>
  90. <!-- Commons -->
  91. <dependency>
  92. <groupId>org.apache.commons</groupId>
  93. <artifactId>commons-lang3</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>commons-io</groupId>
  97. <artifactId>commons-io</artifactId>
  98. </dependency>
  99. <!-- DevTools -->
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-devtools</artifactId>
  103. <optional>true</optional>
  104. </dependency>
  105. <!-- Spring Boot Actuator -->
  106. <dependency>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-actuator</artifactId>
  109. </dependency>
  110. <!-- 测试 -->
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-test</artifactId>
  114. <scope>test</scope>
  115. </dependency>
  116. </dependencies>
  117. <build>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. <version>2.5.15</version>
  123. <executions>
  124. <execution>
  125. <goals>
  126. <goal>repackage</goal>
  127. </goals>
  128. </execution>
  129. </executions>
  130. </plugin>
  131. <!-- JaCoCo 代码覆盖率 -->
  132. <plugin>
  133. <groupId>org.jacoco</groupId>
  134. <artifactId>jacoco-maven-plugin</artifactId>
  135. <version>0.8.11</version>
  136. <executions>
  137. <execution>
  138. <goals>
  139. <goal>prepare-agent</goal>
  140. </goals>
  141. </execution>
  142. <execution>
  143. <id>report</id>
  144. <phase>test</phase>
  145. <goals>
  146. <goal>report</goal>
  147. </goals>
  148. </execution>
  149. <execution>
  150. <id>check</id>
  151. <phase>test</phase>
  152. <goals>
  153. <goal>check</goal>
  154. </goals>
  155. <configuration>
  156. <rules>
  157. <rule>
  158. <element>BUNDLE</element>
  159. <limits>
  160. <limit>
  161. <counter>LINE</counter>
  162. <value>COVEREDRATIO</value>
  163. <minimum>0.05</minimum>
  164. </limit>
  165. </limits>
  166. </rule>
  167. </rules>
  168. <excludes>
  169. <exclude>com/iot/platform/domain/**</exclude>
  170. <exclude>com/iot/platform/domain/vo/**</exclude>
  171. <exclude>com/iot/platform/mapper/**</exclude>
  172. <exclude>com/iot/platform/common/enums/**</exclude>
  173. <exclude>com/iot/platform/config/properties/**</exclude>
  174. <exclude>com/iot/platform/datasource/**</exclude>
  175. </excludes>
  176. </configuration>
  177. </execution>
  178. </executions>
  179. </plugin>
  180. </plugins>
  181. <finalName>${project.artifactId}</finalName>
  182. </build>
  183. </project>