pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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>cc.iotkit</groupId>
  21. <artifactId>iot-temporal-service</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>cc.iotkit</groupId>
  25. <artifactId>iot-data-serviceImpl-cache</artifactId>
  26. </dependency>
  27. <!--====================第三方库===================-->
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-context</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-jdbc</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.taosdata.jdbc</groupId>
  38. <artifactId>taos-jdbcdriver</artifactId>
  39. <version>2.0.40</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.projectlombok</groupId>
  43. <artifactId>lombok</artifactId>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.fasterxml.jackson.core</groupId>
  48. <artifactId>jackson-annotations</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.github.linpeilie</groupId>
  52. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>cn.hutool</groupId>
  56. <artifactId>hutool-http</artifactId>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-compiler-plugin</artifactId>
  64. <configuration>
  65. <source>${java.version}</source>
  66. <target>${java.version}</target>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>