idempotent-redis
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.arun0009</groupId> <artifactId>idempotent-redis</artifactId> <version>1.0.2</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.arun0009</groupId> <artifactId>idempotent</artifactId> <version>1.0.2</version> </parent> <artifactId>idempotent-redis</artifactId> <version>1.0.2</version> <packaging>jar</packaging> <name>idempotent-redis</name> <description>idempotent-redis</description> <url>https://github.com/arun0009/idempotent/tree/main/idempotent-redis</url> <dependencies> <dependency> <groupId>io.github.arun0009</groupId> <artifactId>idempotent-core</artifactId> <version>${idempotent.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <version>${spring-boot.version}</version> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>io.github.arun0009</groupId> <artifactId>idempotent-core</artifactId> <version>${idempotent.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> </project>