2016-12-01 11:40:28 +02:00
|
|
|
<!--
|
|
|
|
|
|
2021-01-11 13:42:16 +02:00
|
|
|
Copyright © 2016-2021 The Thingsboard Authors
|
2016-12-01 11:40:28 +02:00
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<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>org.thingsboard</groupId>
|
2021-03-03 12:02:06 +02:00
|
|
|
<version>3.2.2-SNAPSHOT</version>
|
2016-12-05 17:03:59 +02:00
|
|
|
<artifactId>thingsboard</artifactId>
|
2016-12-01 11:40:28 +02:00
|
|
|
</parent>
|
|
|
|
|
<artifactId>dao</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>Thingsboard Server DAO Layer</name>
|
2017-12-05 15:19:37 +02:00
|
|
|
<url>https://thingsboard.io</url>
|
2016-12-01 11:40:28 +02:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<main.dir>${basedir}/..</main.dir>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2016-12-05 17:03:59 +02:00
|
|
|
<groupId>org.thingsboard.common</groupId>
|
2016-12-01 11:40:28 +02:00
|
|
|
<artifactId>data</artifactId>
|
2018-03-13 18:03:00 +02:00
|
|
|
</dependency>
|
2021-02-26 14:16:34 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard.common</groupId>
|
|
|
|
|
<artifactId>cache</artifactId>
|
|
|
|
|
</dependency>
|
2018-03-13 18:03:00 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard.common</groupId>
|
|
|
|
|
<artifactId>message</artifactId>
|
|
|
|
|
</dependency>
|
2020-07-10 10:47:19 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard.common</groupId>
|
|
|
|
|
<artifactId>stats</artifactId>
|
|
|
|
|
</dependency>
|
2019-07-26 09:00:57 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard.common</groupId>
|
|
|
|
|
<artifactId>dao-api</artifactId>
|
|
|
|
|
</dependency>
|
2019-11-15 18:27:57 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard.common</groupId>
|
|
|
|
|
<artifactId>util</artifactId>
|
|
|
|
|
</dependency>
|
2016-12-01 11:40:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
</dependency>
|
2017-05-06 21:26:20 -04:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
</dependency>
|
2016-12-01 11:40:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2017-04-22 22:37:51 -04:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dbunit</groupId>
|
|
|
|
|
<artifactId>dbunit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.springtestdbunit</groupId>
|
|
|
|
|
<artifactId>spring-test-dbunit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-12-01 11:40:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
2021-02-04 19:31:20 +02:00
|
|
|
<artifactId>mockito-core</artifactId>
|
2016-12-01 11:40:28 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2020-06-15 12:37:43 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
</dependency>
|
2016-12-01 11:40:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</dependency>
|
2020-06-15 12:37:43 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
|
</dependency>
|
2018-02-28 09:03:06 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
2020-05-04 11:51:08 +03:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-oauth2-client</artifactId>
|
2018-02-28 09:03:06 +02:00
|
|
|
</dependency>
|
2020-05-08 15:45:54 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.datastax.oss</groupId>
|
|
|
|
|
<artifactId>java-driver-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.datastax.oss</groupId>
|
|
|
|
|
<artifactId>java-driver-query-builder</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
|
<artifactId>metrics-jmx</artifactId>
|
|
|
|
|
</dependency>
|
2016-12-01 11:40:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.takari.junit</groupId>
|
|
|
|
|
<artifactId>takari-cpsuite</artifactId>
|
|
|
|
|
<scope>test</scope>
|
2020-06-15 12:37:43 +03:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-12-01 11:40:28 +02:00
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.cassandraunit</groupId>
|
|
|
|
|
<artifactId>cassandra-unit</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-08 15:45:54 +03:00
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
</exclusion>
|
2016-12-01 11:40:28 +02:00
|
|
|
</exclusions>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2018-03-13 18:03:00 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
|
</dependency>
|
2016-12-01 11:40:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-x-discovery</artifactId>
|
|
|
|
|
</dependency>
|
2018-02-07 16:43:24 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
|
|
</dependency>
|
2016-12-01 11:40:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
</dependency>
|
2017-01-08 20:16:52 -05:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
|
</dependency>
|
2017-04-11 22:09:52 -04:00
|
|
|
<dependency>
|
2017-04-22 22:37:51 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2017-06-24 13:29:43 -04:00
|
|
|
<dependency>
|
2017-07-01 20:39:00 +03:00
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
|
<artifactId>hsqldb</artifactId>
|
2017-06-24 13:29:43 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2018-02-07 16:43:24 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
|
</dependency>
|
2018-02-19 19:34:04 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
|
</dependency>
|
2018-02-28 09:03:06 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
|
<artifactId>rest</artifactId>
|
|
|
|
|
</dependency>
|
2016-12-01 11:40:28 +02:00
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>${surfire.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*TestSuite.java</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2020-06-15 12:37:43 +03:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2016-12-01 11:40:28 +02:00
|
|
|
<version>${jar-plugin.version}</version>
|
2020-06-15 12:37:43 +03:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2016-12-01 11:40:28 +02:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|