pom.xml 2.4 KB

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