48 lines
1.4 KiB
XML
Executable File
48 lines
1.4 KiB
XML
Executable File
<?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-data</artifactId>
|
|
<groupId>cc.iotkit</groupId>
|
|
<version>0.4.2-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>iot-data-cache</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-model</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-data-service</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |