2022-07-04 03:27:21 +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>
|
2023-10-09 23:34:00 +00:00
|
|
|
<artifactId>iot-dao</artifactId>
|
2022-07-04 03:27:21 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2024-03-16 02:23:54 +00:00
|
|
|
<version>0.5.3</version>
|
2022-07-04 03:27:21 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2024-03-16 02:23:54 +00:00
|
|
|
<version>0.5.3</version>
|
2022-07-14 11:45:27 +00:00
|
|
|
<artifactId>iot-temporal-service</artifactId>
|
2022-07-04 03:27:21 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
2023-10-15 01:20:44 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-common-thing</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-07-04 03:27:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-10-09 23:34:00 +00:00
|
|
|
<artifactId>iot-data-model</artifactId>
|
2022-07-04 03:27:21 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
2023-05-15 00:31:02 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-07-04 03:27:21 +00:00
|
|
|
</project>
|