12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>iotkit-parent</artifactId>
- <groupId>cc.iotkit</groupId>
- <version>0.4.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>pom</packaging>
- <modules>
- <module>iot-model</module>
- <module>iot-data-service</module>
- <module>iot-data-cache</module>
- <module>iot-temporal-service</module>
- <module>iot-es-temporal-service</module>
- <module>iot-rdb-data-service</module>
- <module>iot-td-temporal-service</module>
- <module>iot-ts-temporal-service</module>
- </modules>
- <artifactId>iot-data</artifactId>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct</artifactId>
- <version>1.4.2.Final</version>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct-processor</artifactId>
- <version>1.4.2.Final</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|