2016-12-01 11:38:15 +02:00
|
|
|
<!--
|
|
|
|
|
|
2025-02-25 09:39:16 +02:00
|
|
|
Copyright © 2016-2025 The Thingsboard Authors
|
2016-12-01 11:38:15 +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>
|
2016-12-05 17:03:59 +02:00
|
|
|
<groupId>org.thingsboard</groupId>
|
2025-07-24 12:56:40 +03:00
|
|
|
<version>4.2.0-RC</version>
|
2016-12-01 11:38:15 +02:00
|
|
|
<artifactId>common</artifactId>
|
|
|
|
|
</parent>
|
2016-12-05 17:03:59 +02:00
|
|
|
<groupId>org.thingsboard.common</groupId>
|
2016-12-01 11:38:15 +02:00
|
|
|
<artifactId>message</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>Thingsboard Server Common Messages</name>
|
2017-12-05 15:19:37 +02:00
|
|
|
<url>https://thingsboard.io</url>
|
2016-12-01 11:38:15 +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:38:15 +02:00
|
|
|
<artifactId>data</artifactId>
|
|
|
|
|
</dependency>
|
2018-10-15 15:53:06 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2024-04-19 23:25:15 +02:00
|
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
2018-10-15 15:53:06 +03:00
|
|
|
</dependency>
|
2016-12-01 11:38:15 +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>
|
2018-11-08 11:34:14 +02:00
|
|
|
<dependency>
|
2024-04-18 17:11:29 +02:00
|
|
|
<groupId>com.bucket4j</groupId>
|
2018-11-08 11:34:14 +02:00
|
|
|
<artifactId>bucket4j-core</artifactId>
|
|
|
|
|
</dependency>
|
2018-03-13 18:03:00 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2016-12-01 11:38:15 +02:00
|
|
|
<dependency>
|
2021-08-06 13:53:35 +03:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2016-12-01 11:38:15 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2021-08-06 13:53:35 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
|
<artifactId>awaitility</artifactId>
|
2016-12-01 11:38:15 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2018-03-13 18:03:00 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.xolstice.maven.plugins</groupId>
|
|
|
|
|
<artifactId>protobuf-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
2020-08-31 11:59:48 +03:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skip>false</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2016-12-01 11:38:15 +02:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|