Files
spring-statemachine/spring-statemachine-samples/tasks/spring-statemachine-samples-tasks.gradle
2025-02-03 10:43:36 +01:00

24 lines
1005 B
Groovy

plugins {
id 'org.springframework.statemachine.sample'
}
description = 'Spring State Machine Parallel Regions Sample'
dependencies {
management platform(project(":spring-statemachine-platform"))
implementation project(':spring-statemachine-samples-common')
implementation project(':spring-statemachine-core')
implementation 'org.springframework.shell:spring-shell-core'
testImplementation(testFixtures(project(':spring-statemachine-core')))
testImplementation (project(':spring-statemachine-test'))
testImplementation 'org.hamcrest:hamcrest-core'
testImplementation 'org.hamcrest:hamcrest-library'
testImplementation 'org.springframework.boot:spring-boot-test'
testImplementation 'org.springframework:spring-test'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'io.projectreactor.tools:blockhound'
}