| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.middle.platform</groupId>
- <artifactId>iot-middle-platform</artifactId>
- <version>${revision}</version>
- </parent>
- <artifactId>iot-framework</artifactId>
- <packaging>pom</packaging>
- <description>框架</description>
- <modules>
- <module>iot-common</module>
- <module>iot-starter-es</module>
- <module>iot-starter-feign</module>
- <module>iot-starter-web</module>
- <module>iot-starter-redis</module>
- <module>iot-starter-mqtt</module>
- <module>iot-starter-mongo</module>
- <module>iot-starter-mybatis</module>
- <module>iot-starter-tdengine</module>
- <module>iot-starter-rabbitmq</module>
- <module>iot-starter-log</module>
- <module>iot-starter-satoken</module>
- <module>iot-starter-pagehelper</module>
- <module>iot-starter-biz-dict</module>
- </modules>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- </project>
|