pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <module>iot-ts-temporal-service</module>
  21. </modules>
  22. <artifactId>iot-data</artifactId>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.mapstruct</groupId>
  27. <artifactId>mapstruct</artifactId>
  28. <version>1.4.2.Final</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.mapstruct</groupId>
  32. <artifactId>mapstruct-processor</artifactId>
  33. <version>1.4.2.Final</version>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>
  37. </project>