iotkit-parent/iot-dao/iot-data-serviceImpl-cache/pom.xml

63 lines
1.9 KiB
XML
Raw Normal View History

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>
<artifactId>iot-dao</artifactId>
2022-03-03 09:24:41 +00:00
<groupId>cc.iotkit</groupId>
<version>0.5.1-SNAPSHOT</version>
2022-03-03 09:24:41 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<version>0.5.1-SNAPSHOT</version>
2023-05-17 08:24:21 +00:00
<artifactId>iot-data-serviceImpl-cache</artifactId>
2022-03-03 09:24:41 +00:00
<dependencies>
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-core</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
2022-03-19 14:28:28 +00:00
<dependency>
2023-07-21 06:52:18 +00:00
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-redis</artifactId>
2022-07-19 13:29:43 +00:00
</dependency>
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>cc.iotkit</groupId>
<artifactId>iot-data-model</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-08-07 00:32:23 +00:00
<artifactId>iot-data-service</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
2023-08-07 00:32:23 +00:00
<!--====================第三方库===================-->
2022-07-19 13:29:43 +00:00
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
2022-07-19 13:29:43 +00:00
</dependency>
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
2022-07-19 13:29:43 +00:00
</dependency>
2022-03-03 09:24:41 +00:00
</dependencies>
2022-07-14 11:45:27 +00:00
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-03-03 09:24:41 +00:00
</project>