2022-03-03 09:24:41 +00:00
|
|
|
<?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>
|
2022-07-14 11:45:27 +00:00
|
|
|
<artifactId>iot-data</artifactId>
|
2022-03-03 09:24:41 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-07-19 13:29:43 +00:00
|
|
|
<version>0.4.0-SNAPSHOT</version>
|
2022-03-03 09:24:41 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-07-14 11:45:27 +00:00
|
|
|
<artifactId>iot-es-temporal-service</artifactId>
|
2022-03-03 09:24:41 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-03-19 14:28:28 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-elasticsearch</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-03 09:24:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-07-20 07:16:42 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-03 09:24:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-07-14 11:45:27 +00:00
|
|
|
<artifactId>iot-temporal-service</artifactId>
|
2022-03-03 09:24:41 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
2022-07-14 11:45:27 +00:00
|
|
|
|
2022-07-20 07:16:42 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>11</source> <!-- depending on your project -->
|
|
|
|
<target>11</target> <!-- depending on your project -->
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
<path>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.24</version>
|
|
|
|
</path>
|
|
|
|
<path>
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
<version>1.4.2.Final</version>
|
|
|
|
</path>
|
|
|
|
<!-- other annotation processors -->
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-03-03 09:24:41 +00:00
|
|
|
</project>
|