| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | <?xml version="1.0" encoding="UTF-8"?><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xmlns="http://maven.apache.org/POM/4.0.0"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <parent>        <groupId>com.taais</groupId>        <artifactId>taais-common</artifactId>        <version>${revision}</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <packaging>jar</packaging>    <artifactId>taais-common-redis</artifactId>    <description>        taais-common-redis 缓存服务    </description>    <dependencies>        <!-- Km Common Core-->        <dependency>            <groupId>com.taais</groupId>            <artifactId>taais-common-core</artifactId>        </dependency>        <!--redisson-->        <dependency>            <groupId>org.redisson</groupId>            <artifactId>redisson-spring-boot-starter</artifactId>        </dependency>        <dependency>            <groupId>com.baomidou</groupId>            <artifactId>lock4j-redisson-spring-boot-starter</artifactId>        </dependency>        <!-- lombok-->        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>        </dependency>        <!--Annotation Processor-->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-configuration-processor</artifactId>        </dependency>    </dependencies></project>
 |