Remove spring-statemachine-redis

- For now classes just moved under
  spring-statemachine-data-redis
- Fixes #514
This commit is contained in:
jvalkeal
2018-02-23 12:23:32 +02:00
parent 140ccbf2f0
commit 65c9bfac89
8 changed files with 10 additions and 30 deletions

View File

@@ -89,10 +89,11 @@ project('spring-statemachine-samples-security') {
project('spring-statemachine-samples-eventservice') {
description = 'Spring State Machine Event Service Sample'
dependencies {
compile project(":spring-statemachine-redis")
compile project(":spring-statemachine-data-common:spring-statemachine-data-redis")
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
compile("org.apache.commons:commons-pool2")
runtime("redis.clients:jedis")
}
}

View File

@@ -35,9 +35,9 @@ import org.springframework.statemachine.StateMachinePersist;
import org.springframework.statemachine.action.Action;
import org.springframework.statemachine.config.StateMachineBuilder;
import org.springframework.statemachine.config.StateMachineBuilder.Builder;
import org.springframework.statemachine.data.redis.RedisStateMachineContextRepository;
import org.springframework.statemachine.data.redis.RedisStateMachinePersister;
import org.springframework.statemachine.persist.RepositoryStateMachinePersist;
import org.springframework.statemachine.redis.RedisStateMachineContextRepository;
import org.springframework.statemachine.redis.RedisStateMachinePersister;
@Configuration
public class StateMachineConfig {