pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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>iot-common</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>${revision}</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-common-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-es</module>
  23. <!--<module>iot-temporal-serviceImpl-ts</module>-->
  24. <module>iot-temproal-serviceImpl-td</module>
  25. </modules>
  26. <artifactId>iot-common-dao</artifactId>
  27. <dependencyManagement>
  28. <dependencies>
  29. <!-- <dependency>-->
  30. <!-- <groupId>org.mapstruct</groupId>-->
  31. <!-- <artifactId>mapstruct</artifactId>-->
  32. <!-- <version>1.4.2.Final</version>-->
  33. <!-- </dependency>-->
  34. <!-- <dependency>-->
  35. <!-- <groupId>org.mapstruct</groupId>-->
  36. <!-- <artifactId>mapstruct-processor</artifactId>-->
  37. <!-- <version>1.4.2.Final</version>-->
  38. <!-- </dependency>-->
  39. </dependencies>
  40. </dependencyManagement>
  41. </project>