2020-02-26 08:13:50 +00:00
|
|
|
<?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">
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>jetlinks-components</artifactId>
|
|
|
|
|
<groupId>org.jetlinks.community</groupId>
|
2021-05-31 01:31:03 +00:00
|
|
|
<version>1.9.0</version>
|
2020-02-26 08:13:50 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>rule-engine-component</artifactId>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2020-06-23 05:51:27 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.cronutils</groupId>
|
|
|
|
|
<artifactId>cron-utils</artifactId>
|
|
|
|
|
<version>9.0.2</version>
|
|
|
|
|
</dependency>
|
2020-02-26 08:13:50 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jetlinks</groupId>
|
|
|
|
|
<artifactId>rule-engine-support</artifactId>
|
|
|
|
|
<version>${jetlinks.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
|
<artifactId>common-component</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
|
<artifactId>elasticsearch-component</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jetlinks</groupId>
|
|
|
|
|
<artifactId>rule-engine-cluster</artifactId>
|
|
|
|
|
<version>${jetlinks.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
|
<artifactId>gateway-component</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hswebframework</groupId>
|
|
|
|
|
<artifactId>hsweb-expands-script</artifactId>
|
|
|
|
|
<version>${hsweb.expands.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hswebframework</groupId>
|
|
|
|
|
<artifactId>hsweb-easy-orm-rdb</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2020-04-22 03:00:32 +00:00
|
|
|
<groupId>org.jetlinks</groupId>
|
|
|
|
|
<artifactId>reactor-ql</artifactId>
|
2020-02-26 08:13:50 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|