pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. <artifactId>iot-common-dao</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>${revision}</version>
  12. <artifactId>iot-temproal-serviceImpl-td</artifactId>
  13. <description>
  14. 时序数据库服务接口的TDengine实现
  15. 支持版本:v0.4.1
  16. TDengine版本:2.6.0.12
  17. </description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-context</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-jdbc</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.taosdata.jdbc</groupId>
  29. <artifactId>taos-jdbcdriver</artifactId>
  30. <version>2.0.40</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. <scope>provided</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.fasterxml.jackson.core</groupId>
  39. <artifactId>jackson-annotations</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.github.linpeilie</groupId>
  43. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.hutool</groupId>
  47. <artifactId>hutool-http</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>cc.iotkit</groupId>
  51. <artifactId>iot-temporal-service</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>cc.iotkit</groupId>
  55. <artifactId>iot-data-serviceImpl-cache</artifactId>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-compiler-plugin</artifactId>
  63. <configuration>
  64. <source>${java.version}</source>
  65. <target>${java.version}</target>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>