You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
4.6 KiB
111 lines
4.6 KiB
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.thing</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>5.1</version>
|
|
</parent>
|
|
<packaging>jar</packaging>
|
|
<artifactId>tskv</artifactId>
|
|
<groupId>com.thing.common</groupId>
|
|
<name>ThingBI Server Common TsKv</name>
|
|
<properties>
|
|
<main.dir>${basedir}/../..</main.dir>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.thing.common</groupId>
|
|
<artifactId>orm</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.thing.common</groupId>
|
|
<artifactId>util</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.thing.common</groupId>
|
|
<artifactId>queue</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.thingsboard.common</groupId>
|
|
<artifactId>data</artifactId>
|
|
<version>3.2.2-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- <build>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
|
<!-- <version>${maven-compiler-plugin.verison}</version>-->
|
|
<!-- <configuration>-->
|
|
<!-- <source>${java.version}</source>-->
|
|
<!-- <target>${java.version}</target>-->
|
|
<!-- <encoding>${project.build.sourceEncoding}</encoding>-->
|
|
<!-- <annotationProcessorPaths>-->
|
|
<!-- <path>-->
|
|
<!-- <groupId>org.projectlombok</groupId>-->
|
|
<!-- <artifactId>lombok</artifactId>-->
|
|
<!-- <version>${lombok.version}</version>-->
|
|
<!-- </path>-->
|
|
<!-- <path>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-configuration-processor</artifactId>-->
|
|
<!-- <version>${spring-boot.version}</version>-->
|
|
<!-- </path>-->
|
|
<!-- <path>-->
|
|
<!-- <groupId>org.projectlombok</groupId>-->
|
|
<!-- <artifactId>lombok-mapstruct-binding</artifactId>-->
|
|
<!-- <version>${mapstruct-plus.lombok.version}</version>-->
|
|
<!-- </path>-->
|
|
<!-- <path>-->
|
|
<!-- <groupId>com.mybatis-flex</groupId>-->
|
|
<!-- <artifactId>mybatis-flex-processor</artifactId>-->
|
|
<!-- <version>${mybatis-flex.version}</version>-->
|
|
<!-- </path>-->
|
|
<!-- </annotationProcessorPaths>-->
|
|
<!-- <compilerArgs>-->
|
|
<!-- <arg>-parameters</arg>-->
|
|
<!-- </compilerArgs>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-resources-plugin</artifactId>-->
|
|
<!-- <version>${maven-resources-plugin.version}</version>-->
|
|
<!-- </plugin>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-source-plugin</artifactId>-->
|
|
<!-- <version>${maven-source-plugin.version}</version>-->
|
|
<!-- </plugin>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-jar-plugin</artifactId>-->
|
|
<!-- <version>${maven-jar-plugin.version}</version>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
</project>
|