iotkit-parent/iot-module/iot-manager/pom.xml

142 lines
4.6 KiB
XML
Raw Permalink Normal View History

2023-05-15 00:31:02 +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>iot-module</artifactId>
<groupId>cc.iotkit</groupId>
2024-03-16 02:23:54 +00:00
<version>0.5.3</version>
2023-05-15 00:31:02 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>iot-manager</artifactId>
2023-10-15 01:20:44 +00:00
2023-05-16 00:36:47 +00:00
<dependencies>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-data-model</artifactId>
2023-05-16 00:36:47 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-core</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-rule-engine</artifactId>
</dependency>
2023-06-26 05:53:54 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-screen</artifactId>
</dependency>
2023-05-16 00:36:47 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-virtual-device</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-message-core</artifactId>
</dependency>
2023-07-08 07:52:23 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-oss</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-websocket</artifactId>
</dependency>
2023-07-08 07:52:23 +00:00
2023-05-16 00:36:47 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-temporal-service</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-05-17 08:24:21 +00:00
<artifactId>iot-data-serviceImpl-rdb</artifactId>
2023-05-16 00:36:47 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-08-07 00:32:23 +00:00
<artifactId>iot-data-serviceImpl-cache</artifactId>
2023-05-16 00:36:47 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-web</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-doc</artifactId>
</dependency>
2023-05-28 06:30:58 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-satoken</artifactId>
</dependency>
2023-05-16 00:36:47 +00:00
2023-05-30 08:20:38 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-excel</artifactId>
</dependency>
2023-05-30 10:07:43 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-log</artifactId>
</dependency>
2023-08-07 00:32:23 +00:00
<!--====================第三方库===================-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2023-06-05 03:07:27 +00:00
<dependency>
<groupId>io.github.linpeilie</groupId>
<artifactId>mapstruct-plus-spring-boot-starter</artifactId>
</dependency>
2023-08-07 00:32:23 +00:00
2023-05-16 00:36:47 +00:00
</dependencies>
2023-05-15 00:31:02 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2023-06-05 03:07:27 +00:00
<version>3.8.1</version>
2023-05-15 00:31:02 +00:00
<configuration>
2023-06-05 03:07:27 +00:00
<source>${java.version}</source> <!-- depending on your project -->
<target>${java.version}</target> <!-- depending on your project -->
<encoding>utf8</encoding>
2023-06-05 03:07:27 +00:00
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<path>
<groupId>io.github.linpeilie</groupId>
<artifactId>mapstruct-plus-processor</artifactId>
<version>${mapstruct-plus.version}</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-mapstruct-binding</artifactId>
<version>0.2.0</version>
</path>
<!-- other annotation processors -->
</annotationProcessorPaths>
2023-05-15 00:31:02 +00:00
</configuration>
</plugin>
</plugins>
</build>
2023-10-15 01:20:44 +00:00
</project>