pom.xml 2.5 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-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. TDengine版本:3.x
  16. </description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cc.iotkit</groupId>
  20. <artifactId>iot-temporal-service</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cc.iotkit</groupId>
  24. <artifactId>iot-data-serviceImpl-cache</artifactId>
  25. </dependency>
  26. <!--====================第三方库===================-->
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-context</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-jdbc</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.taosdata.jdbc</groupId>
  37. <artifactId>taos-jdbcdriver</artifactId>
  38. <version>3.2.4</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fasterxml.jackson.core</groupId>
  47. <artifactId>jackson-annotations</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.github.linpeilie</groupId>
  51. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-http</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>