iotkit-parent/iot-dao/iot-temporal-serviceImpl-td/pom.xml

85 lines
2.5 KiB
XML
Raw Normal View History

2022-08-06 16:51:10 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>iot-dao</artifactId>
2022-08-06 16:51:10 +00:00
<groupId>cc.iotkit</groupId>
2024-03-16 02:23:54 +00:00
<version>0.5.3</version>
2022-08-06 16:51:10 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
2024-03-16 02:23:54 +00:00
<version>0.5.3</version>
2023-10-15 01:20:44 +00:00
<artifactId>iot-temporal-serviceImpl-td</artifactId>
2022-08-06 16:51:10 +00:00
2023-05-06 06:46:44 +00:00
<description>
时序数据库服务接口的TDengine实现
2023-08-13 01:01:25 +00:00
TDengine版本3.x
2023-05-06 06:46:44 +00:00
</description>
2022-08-06 16:51:10 +00:00
<dependencies>
2023-08-07 00:32:23 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-temporal-service</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-data-serviceImpl-cache</artifactId>
</dependency>
<!--====================第三方库===================-->
2022-08-06 16:51:10 +00:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
2023-08-13 01:01:25 +00:00
<version>3.2.4</version>
2022-08-06 16:51:10 +00:00
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
2023-06-04 08:41:59 +00:00
<groupId>io.github.linpeilie</groupId>
<artifactId>mapstruct-plus-spring-boot-starter</artifactId>
2022-08-06 16:51:10 +00:00
</dependency>
2023-08-07 00:32:23 +00:00
2022-08-06 16:51:10 +00:00
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-http</artifactId>
</dependency>
</dependencies>
2023-05-15 00:31:02 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
2022-08-06 16:51:10 +00:00
</project>