mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
73 lines
2.3 KiB
XML
73 lines
2.3 KiB
XML
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<groupId>com.taos</groupId>
|
||
|
|
<artifactId>example</artifactId>
|
||
|
|
<version>1.0</version>
|
||
|
|
<name>example</name>
|
||
|
|
<description>java</description>
|
||
|
|
<!-- ANCHOR: spring-->
|
||
|
|
<parent>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
|
<version>2.7.0</version>
|
||
|
|
<relativePath/>
|
||
|
|
</parent>
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<java.version>8</java.version>
|
||
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
|
<spring.boot.version>2.5.12</spring.boot.version>
|
||
|
|
<taos.jdbc.version>3.2.7</taos.jdbc.version>
|
||
|
|
<druid.version>1.2.8</druid.version>
|
||
|
|
<mybatis.version>2.2.2</mybatis.version>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<!--spring-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!--mybatis-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
|
<version>${mybatis.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<!--connection pool-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
||
|
|
<version>${druid.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.taosdata.jdbc</groupId>
|
||
|
|
<artifactId>taos-jdbcdriver</artifactId>
|
||
|
|
<version>${taos.jdbc.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- ANCHOR_END: spring-->
|
||
|
|
<!--test-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|