pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.4.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>iot-model</module>
  14. <module>iot-data-service</module>
  15. <module>iot-data-cache</module>
  16. <module>iot-temporal-service</module>
  17. <module>iot-es-temporal-service</module>
  18. <module>iot-rdb-data-service</module>
  19. <module>iot-td-temporal-service</module>
  20. </modules>
  21. <artifactId>iot-data</artifactId>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.mapstruct</groupId>
  26. <artifactId>mapstruct</artifactId>
  27. <version>1.4.2.Final</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.mapstruct</groupId>
  31. <artifactId>mapstruct-processor</artifactId>
  32. <version>1.4.2.Final</version>
  33. </dependency>
  34. </dependencies>
  35. </dependencyManagement>
  36. </project>