32 lines
927 B
XML
32 lines
927 B
XML
![]() |
<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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.chinaunicom.ebtp</groupId>
|
||
|
<artifactId>mall-ebtp-cloud-parent</artifactId>
|
||
|
<version>0.0.1</version>
|
||
|
</parent>
|
||
|
<groupId>com.chinaunicom.mall.ebtp.cloud</groupId>
|
||
|
<artifactId>redis-cache-example</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>redis-cache-example</name>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.chinaunicom.ebtp</groupId>
|
||
|
<artifactId>mall-ebtp-cloud-redis-starter</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|