pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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. </modules>
  23. <properties>
  24. <maven.compiler.source>11</maven.compiler.source>
  25. <maven.compiler.target>11</maven.compiler.target>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. </properties>
  28. </project>