pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>iotkit-parent</artifactId>
  8. <groupId>cc.iotkit</groupId>
  9. <version>${revision}</version>
  10. </parent>
  11. <packaging>pom</packaging>
  12. <artifactId>iot-common</artifactId>
  13. <description>
  14. 技术组件,也分成两类:
  15. 1. 框架组件:脚本引擎、通讯总线等等的拓展
  16. 2. 业务组件:物模型、鉴权、工具
  17. </description>
  18. <modules>
  19. <module>iot-common-core</module>
  20. <module>iot-script-engine</module>
  21. <module>iot-message-bus</module>
  22. <module>iot-message-notify</module>
  23. </modules>
  24. <properties>
  25. <maven.compiler.source>11</maven.compiler.source>
  26. <maven.compiler.target>11</maven.compiler.target>
  27. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28. </properties>
  29. </project>