pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>iot-dao</artifactId>
  8. <groupId>cc.iotkit</groupId>
  9. <version>0.5.3</version>
  10. </parent>
  11. <version>0.5.3</version>
  12. <artifactId>iot-temporal-serviceImpl-ts</artifactId>
  13. <description>
  14. 时序数据库服务接口的TimescaleDB实现
  15. postgrep 14
  16. </description>
  17. <properties>
  18. <maven.compiler.source>11</maven.compiler.source>
  19. <maven.compiler.target>11</maven.compiler.target>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>cc.iotkit</groupId>
  25. <artifactId>iot-data-serviceImpl-cache</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>cc.iotkit</groupId>
  29. <artifactId>iot-data-model</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>cc.iotkit</groupId>
  33. <artifactId>iot-data-model</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cc.iotkit</groupId>
  37. <artifactId>iot-temporal-service</artifactId>
  38. </dependency>
  39. <!--====================第三方库===================-->
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-context</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-jdbc</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.fasterxml.jackson.core</groupId>
  54. <artifactId>jackson-annotations</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.hutool</groupId>
  58. <artifactId>hutool-http</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.jooq</groupId>
  62. <artifactId>jooq-meta</artifactId>
  63. <version>3.14.15</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.jooq</groupId>
  67. <artifactId>jooq</artifactId>
  68. <version>3.14.15</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.postgresql</groupId>
  72. <artifactId>postgresql</artifactId>
  73. <version>42.5.4</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework</groupId>
  77. <artifactId>spring-jdbc</artifactId>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-compiler-plugin</artifactId>
  85. <version>3.8.1</version>
  86. <configuration>
  87. <source>${java.version}</source>
  88. <target>${java.version}</target>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>