iotkit-parent/iot-test-tool/iot-virtual-device/pom.xml

67 lines
2.0 KiB
XML
Raw Normal View History

<?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>
2023-05-06 06:46:44 +00:00
<artifactId>iot-test-tool</artifactId>
<groupId>cc.iotkit</groupId>
2024-03-16 02:23:54 +00:00
<version>0.5.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2022-06-30 07:08:45 +00:00
<artifactId>iot-virtual-device</artifactId>
2023-05-06 06:46:44 +00:00
<description>
虚拟设备模块,用于虚拟真实设备数据上报
</description>
<dependencies>
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>cc.iotkit</groupId>
<artifactId>iot-data-model</artifactId>
</dependency>
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>cc.iotkit</groupId>
2023-09-19 00:48:28 +00:00
<artifactId>iot-script-engine</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-09-19 00:48:28 +00:00
<artifactId>iot-data-service</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-plugin-main</artifactId>
</dependency>
2023-08-07 00:32:23 +00:00
<!--====================第三方库===================-->
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
2023-04-09 01:06:58 +00:00
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
2023-04-09 01:06:58 +00:00
</dependency>
</dependencies>
2023-05-15 00:31:02 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>utf8</encoding>
2023-05-15 00:31:02 +00:00
</configuration>
</plugin>
</plugins>
</build>
</project>