iotkit-parent/iot-dao/iot-temporal-service/pom.xml

42 lines
1.3 KiB
XML
Raw Normal View History

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>
<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>
<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>
<version>3.8.1</version>
2023-05-15 00:31:02 +00:00
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
2022-07-04 03:27:21 +00:00
</project>