| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | <?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>elab-parent</artifactId>        <groupId>com.elab.core</groupId>        <version>2.0.5.3-SNAPSHOT</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>elab-redis</artifactId>    <dependencies>        <dependency>            <groupId>org.redisson</groupId>            <artifactId>redisson-spring-boot-starter</artifactId>            <version>3.8.2</version>        </dependency><!--        <dependency>--><!--            <groupId>com.posiedon.wh</groupId>--><!--            <artifactId>config-center-redis-spring-boot-autoconfigure</artifactId>--><!--            <version>0.1.0</version>--><!--        </dependency>-->        <!-- https://mvnrepository.com/artifact/javax.validation/validation-api -->        <dependency>            <groupId>javax.validation</groupId>            <artifactId>validation-api</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope>        </dependency>        <dependency>            <groupId>com.elab.core</groupId>            <artifactId>elab-core</artifactId>            <version>${project.version}</version>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-autoconfigure-processor</artifactId>        </dependency>    </dependencies></project>
 |