12345678910111213141516171819202122232425262728293031323334 |
- <?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>
- <artifactId>iotkit-parent</artifactId>
- <groupId>cc.iotkit</groupId>
- <version>${revision}</version>
- </parent>
- <packaging>pom</packaging>
- <artifactId>iot-common</artifactId>
- <description>
- 技术组件,也分成两类:
- 1. 框架组件:脚本引擎、通讯总线等等的拓展
- 2. 业务组件:物模型、鉴权、工具
- </description>
- <modules>
- <module>iot-common-core</module>
- <module>iot-script-engine</module>
- <module>iot-message-bus</module>
- <module>iot-message-notify</module>
- </modules>
- <properties>
- <maven.compiler.source>11</maven.compiler.source>
- <maven.compiler.target>11</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-
- </project>
|