pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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-common-dao</artifactId>
  8. <groupId>cc.iotkit</groupId>
  9. <version>${revision}</version>
  10. </parent>
  11. <version>${revision}</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>org.springframework</groupId>
  25. <artifactId>spring-context</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-jdbc</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fasterxml.jackson.core</groupId>
  37. <artifactId>jackson-annotations</artifactId>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>org.mapstruct</groupId>-->
  41. <!-- <artifactId>mapstruct</artifactId>-->
  42. <!-- </dependency>-->
  43. <dependency>
  44. <groupId>cn.hutool</groupId>
  45. <artifactId>hutool-http</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>cc.iotkit</groupId>
  49. <artifactId>iot-data-serviceImpl-cache</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.jooq</groupId>
  53. <artifactId>jooq-meta</artifactId>
  54. <version>3.14.15</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.jooq</groupId>
  58. <artifactId>jooq</artifactId>
  59. <version>3.14.15</version>Fv
  60. </dependency>
  61. <dependency>
  62. <groupId>org.postgresql</groupId>
  63. <artifactId>postgresql</artifactId>
  64. <version>42.5.4</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-jdbc</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>cc.iotkit</groupId>
  72. <artifactId>iot-common-model</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>cc.iotkit</groupId>
  76. <artifactId>iot-common-model</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>cc.iotkit</groupId>
  80. <artifactId>iot-temporal-service</artifactId>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-compiler-plugin</artifactId>
  88. <configuration>
  89. <source>${java.version}</source>
  90. <target>${java.version}</target>
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>