2018-02-07 14:17:33 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<!--
|
|
|
|
|
|
2025-02-25 09:39:16 +02:00
|
|
|
Copyright © 2016-2025 The Thingsboard Authors
|
2018-02-07 14:17:33 +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>
|
2025-10-09 16:11:25 +03:00
|
|
|
<version>4.3.0-SNAPSHOT</version>
|
2018-02-07 14:17:33 +02:00
|
|
|
<artifactId>rule-engine</artifactId>
|
|
|
|
|
</parent>
|
|
|
|
|
<groupId>org.thingsboard.rule-engine</groupId>
|
|
|
|
|
<artifactId>rule-engine-components</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>Thingsboard Rule Engine Components</name>
|
|
|
|
|
<url>https://thingsboard.io</url>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<main.dir>${basedir}/../..</main.dir>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2019-07-25 18:37:29 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard.common</groupId>
|
|
|
|
|
<artifactId>util</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2018-02-07 14:17:33 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard</groupId>
|
|
|
|
|
<artifactId>dao</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2018-04-02 21:09:34 +03:00
|
|
|
<dependency>
|
2018-10-15 16:42:08 +03:00
|
|
|
<groupId>org.thingsboard.common.transport</groupId>
|
|
|
|
|
<artifactId>transport-api</artifactId>
|
2018-04-02 21:09:34 +03:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2018-02-07 14:17:33 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard.rule-engine</groupId>
|
|
|
|
|
<artifactId>rule-engine-api</artifactId>
|
2018-03-02 13:27:59 +02:00
|
|
|
</dependency>
|
2018-05-14 11:20:24 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.thingsboard</groupId>
|
|
|
|
|
<artifactId>netty-mqtt</artifactId>
|
|
|
|
|
</dependency>
|
2018-03-02 13:27:59 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</dependency>
|
2018-10-15 15:53:06 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
</dependency>
|
2018-05-07 11:34:18 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2023-06-05 15:24:47 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.projectreactor.netty</groupId>
|
|
|
|
|
<artifactId>reactor-netty-http</artifactId>
|
|
|
|
|
</dependency>
|
2018-05-07 16:53:42 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
2018-09-26 14:54:59 +03:00
|
|
|
<artifactId>kafka-clients</artifactId>
|
2018-05-07 16:53:42 +03:00
|
|
|
</dependency>
|
2018-05-07 19:02:53 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>aws-java-sdk-sns</artifactId>
|
|
|
|
|
</dependency>
|
2024-08-01 11:38:31 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>aws-java-sdk-lambda</artifactId>
|
|
|
|
|
</dependency>
|
2019-06-20 23:03:16 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.cloud</groupId>
|
|
|
|
|
<artifactId>google-cloud-pubsub</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.api.grpc</groupId>
|
|
|
|
|
<artifactId>proto-google-common-protos</artifactId>
|
|
|
|
|
</dependency>
|
2018-05-08 10:58:11 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.rabbitmq</groupId>
|
|
|
|
|
<artifactId>amqp-client</artifactId>
|
|
|
|
|
</dependency>
|
2018-05-08 14:28:58 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2024-04-19 23:25:15 +02:00
|
|
|
<artifactId>bcpkix-jdk18on</artifactId>
|
2018-05-08 14:28:58 +03:00
|
|
|
</dependency>
|
2020-11-12 13:22:32 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.mail</groupId>
|
2023-06-05 15:24:47 +02:00
|
|
|
<artifactId>jakarta.mail</artifactId>
|
2020-11-12 13:22:32 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2022-09-27 14:57:18 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.objecthunter</groupId>
|
|
|
|
|
<artifactId>exp4j</artifactId>
|
|
|
|
|
</dependency>
|
2018-03-02 13:27:59 +02:00
|
|
|
<dependency>
|
2021-08-06 13:53:35 +03:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
|
<artifactId>awaitility</artifactId>
|
2018-03-02 13:27:59 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2022-04-05 23:24:44 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mock-server</groupId>
|
|
|
|
|
<artifactId>mockserver-netty</artifactId>
|
2022-09-27 14:57:18 +03:00
|
|
|
<scope>test</scope>
|
2022-04-05 23:24:44 +03:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mock-server</groupId>
|
|
|
|
|
<artifactId>mockserver-client-java</artifactId>
|
2022-09-27 14:57:18 +03:00
|
|
|
<scope>test</scope>
|
2022-04-05 23:24:44 +03:00
|
|
|
</dependency>
|
2022-08-17 12:48:40 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
|
</dependency>
|
2025-05-13 15:39:46 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>dev.langchain4j</groupId>
|
|
|
|
|
<artifactId>langchain4j</artifactId>
|
|
|
|
|
</dependency>
|
2018-02-07 14:17:33 +02:00
|
|
|
</dependencies>
|
2018-03-02 13:27:59 +02:00
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2019-06-20 23:03:16 +03:00
|
|
|
</project>
|