- Better state sync handling #35 - Adding first recipe for synching and persisting a state # 73
36 lines
996 B
Groovy
36 lines
996 B
Groovy
description = 'Spring State Machine Samples Common'
|
|
|
|
project('spring-statemachine-samples-turnstile') {
|
|
description = 'Spring State Machine Turnstile Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-showcase') {
|
|
description = 'Spring State Machine Showcase Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-cdplayer') {
|
|
description = 'Spring State Machine CD Player Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-tasks') {
|
|
description = 'Spring State Machine Parallel Regions Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-washer') {
|
|
description = 'Spring State Machine History State Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-zookeeper') {
|
|
description = 'Spring State Machine Distributed Sample'
|
|
}
|
|
|
|
project('spring-statemachine-samples-persist') {
|
|
description = 'Spring State Machine Persist Sample'
|
|
dependencies {
|
|
compile project(":spring-statemachine-recipes-common")
|
|
compile ("org.hsqldb:hsqldb:2.3.1")
|
|
compile ("org.springframework:spring-jdbc:$springVersion")
|
|
}
|
|
}
|
|
|