iotkit-parent/iot-rule-engine/pom.xml

81 lines
2.4 KiB
XML
Raw Normal View History

2022-03-03 09:24:41 +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>iotkit-parent</artifactId>
<groupId>cc.iotkit</groupId>
2022-07-19 13:29:43 +00:00
<version>0.4.0-SNAPSHOT</version>
2022-03-03 09:24:41 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
2022-06-30 07:08:45 +00:00
<artifactId>iot-rule-engine</artifactId>
2022-03-03 09:24:41 +00:00
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-integration</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-mqtt</artifactId>
</dependency>
2022-04-11 00:58:53 +00:00
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>
2022-03-03 09:24:41 +00:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2022-06-30 07:08:45 +00:00
<artifactId>iot-model</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2022-06-30 07:08:45 +00:00
<artifactId>iot-common</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2022-06-30 07:08:45 +00:00
<artifactId>iot-component-server</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
2022-06-13 11:12:56 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
2022-06-30 07:08:45 +00:00
<artifactId>iot-message-bus</artifactId>
2022-06-13 11:12:56 +00:00
</dependency>
2022-03-03 09:24:41 +00:00
</dependencies>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
</project>