spring-statemachine-redis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.statemachine</groupId> <artifactId>spring-statemachine-redis</artifactId> <version>1.2.14.RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.springframework.statemachine</groupId> <artifactId>spring-statemachine-redis</artifactId> <version>1.2.14.RELEASE</version> <name>Spring State Machine Redis</name> <description>Spring State Machine Redis</description> <url>https://github.com/spring-projects/spring-statemachine</url> <organization> <name>SpringSource</name> <url>https://spring.io/spring-statemachine</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>jvalkeal</id> <name>Janne Valkealahti</name> <email>janne.valkealahti@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/spring-projects/spring-statemachine</connection> <developerConnection>scm:git:git://github.com/spring-projects/spring-statemachine</developerConnection> <url>https://github.com/spring-projects/spring-statemachine</url> </scm> <dependencies> <dependency> <groupId>org.springframework.statemachine</groupId> <artifactId>spring-statemachine-kryo</artifactId> <version>1.2.14.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.7.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.statemachine</groupId> <artifactId>spring-statemachine-core</artifactId> <version>1.2.14.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <version>1.8.18.RELEASE</version> <scope>compile</scope> </dependency> </dependencies> </project>