This commit updates the samples to use Java's standard CLI utilities instead of Spring Shell. Resolves #1184
18 lines
664 B
Groovy
18 lines
664 B
Groovy
plugins {
|
|
id 'org.springframework.statemachine.sample'
|
|
}
|
|
|
|
description = 'Spring State Machine CD Player Sample'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-statemachine-platform"))
|
|
implementation project(':spring-statemachine-samples-common')
|
|
implementation project(':spring-statemachine-core')
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
testImplementation(testFixtures(project(':spring-statemachine-core')))
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
|
|
}
|