.flattened-pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.iotkit</groupId>
  7. <artifactId>iot-common-dao</artifactId>
  8. <version>0.4.5-SNAPSHOT</version>
  9. </parent>
  10. <groupId>cc.iotkit</groupId>
  11. <artifactId>iot-temproal-serviceImpl-td</artifactId>
  12. <version>0.4.5-SNAPSHOT</version>
  13. <description>时序数据库服务接口的TDengine实现
  14. 支持版本:v0.4.1
  15. TDengine版本:2.6.0.12</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-context</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-jdbc</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.taosdata.jdbc</groupId>
  27. <artifactId>taos-jdbcdriver</artifactId>
  28. <version>2.0.40</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fasterxml.jackson.core</groupId>
  37. <artifactId>jackson-annotations</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mapstruct</groupId>
  41. <artifactId>mapstruct</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.hutool</groupId>
  45. <artifactId>hutool-http</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>cc.iotkit</groupId>
  49. <artifactId>iot-temporal-service</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>cc.iotkit</groupId>
  53. <artifactId>iot-data-serviceImpl-cache</artifactId>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <configuration>
  61. <source>${java.version}</source>
  62. <target>${java.version}</target>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>