2024-08-06 22:17:29 +08: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>yudao-module-iot</artifactId>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<artifactId>yudao-module-iot-api</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
2025-01-29 11:38:51 +08:00
|
|
|
|
<!-- TODO 芋艿:需要在整理下,特别是 PF4J -->
|
2024-08-06 22:17:29 +08:00
|
|
|
|
<description>
|
|
|
|
|
物联网 模块 API,暴露给其它模块调用
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-common</artifactId>
|
|
|
|
|
</dependency>
|
2025-01-21 19:38:41 +08:00
|
|
|
|
|
|
|
|
|
<!-- Web 相关 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2025-01-30 20:00:54 +08:00
|
|
|
|
<!-- 工具类相关 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-12-20 18:57:40 +08:00
|
|
|
|
<dependency>
|
2025-01-30 20:00:54 +08:00
|
|
|
|
<groupId>org.pf4j</groupId> <!-- PF4J:内置插件机制 -->
|
2024-12-20 18:57:40 +08:00
|
|
|
|
<artifactId>pf4j-spring</artifactId>
|
|
|
|
|
</dependency>
|
2025-01-07 17:44:55 +08:00
|
|
|
|
|
|
|
|
|
<!-- 参数校验 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2024-08-06 22:17:29 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|