iotkit-parent/iot-common/pom.xml

34 lines
1.1 KiB
XML
Raw Normal View History

2022-03-03 09:24:41 +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">
2023-05-06 06:46:44 +00:00
<modelVersion>4.0.0</modelVersion>
2022-03-03 09:24:41 +00:00
<parent>
<artifactId>iotkit-parent</artifactId>
<groupId>cc.iotkit</groupId>
2023-05-06 06:46:44 +00:00
<version>${revision}</version>
2022-03-03 09:24:41 +00:00
</parent>
2023-05-06 06:46:44 +00:00
<packaging>pom</packaging>
2022-03-03 09:24:41 +00:00
2022-06-30 07:08:45 +00:00
<artifactId>iot-common</artifactId>
2023-05-06 06:46:44 +00:00
<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>
2023-05-06 06:46:44 +00:00
</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>
2022-03-03 09:24:41 +00:00
</project>