2020-02-20 16:30:24 +02:00
|
|
|
<!--
|
|
|
|
|
|
2025-02-25 09:39:16 +02:00
|
|
|
Copyright © 2016-2025 The Thingsboard Authors
|
2020-02-20 16:30:24 +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"
|
2020-02-20 16:09:34 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2020-02-20 16:30:24 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-02-20 16:09:34 +02:00
|
|
|
<parent>
|
|
|
|
|
<groupId>org.thingsboard</groupId>
|
2025-10-09 16:11:25 +03:00
|
|
|
<version>4.3.0-SNAPSHOT</version>
|
2020-02-20 16:30:24 +02:00
|
|
|
<artifactId>thingsboard</artifactId>
|
2020-02-20 16:09:34 +02:00
|
|
|
</parent>
|
|
|
|
|
<artifactId>rest-client</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>Thingsboard Rest Client</name>
|
|
|
|
|
<url>https://thingsboard.io</url>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<main.dir>${basedir}/..</main.dir>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard.common</groupId>
|
|
|
|
|
<artifactId>data</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2020-02-21 13:41:46 +02:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
2020-02-20 16:09:34 +02:00
|
|
|
</dependency>
|
2021-04-29 14:15:50 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard.common</groupId>
|
|
|
|
|
<artifactId>util</artifactId>
|
|
|
|
|
</dependency>
|
2023-03-17 13:50:49 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
|
<artifactId>java-jwt</artifactId>
|
|
|
|
|
</dependency>
|
2020-02-20 16:09:34 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
2020-08-31 11:59:48 +03:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<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>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2020-02-20 16:30:24 +02:00
|
|
|
</project>
|