pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  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. <parent>
  6. <artifactId>iotkit-parent</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.5.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>pom</packaging>
  12. <description>
  13. 与数据存取相关内容的模块
  14. 包含:数据接口定义、数据实体类定义、关系型数据库接口实现、NoSQL数据库接口实现、数据缓存服务
  15. </description>
  16. <modules>
  17. <module>iot-data-model</module>
  18. <module>iot-data-service</module>
  19. <module>iot-data-serviceImpl-cache</module>
  20. <module>iot-data-serviceImpl-rdb</module>
  21. <module>iot-temporal-service</module>
  22. <module>iot-temporal-serviceImpl-td</module>
  23. <module>iot-temporal-serviceImpl-es</module>
  24. <module>iot-temporal-serviceImpl-iotdb</module>
  25. </modules>
  26. <artifactId>iot-dao</artifactId>
  27. </project>