pom.xml 3.3 KB

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