Files
spring-statemachine/spring-statemachine-samples/datapersist/spring-statemachine-samples-datapersist.gradle
2025-05-28 22:28:56 +02:00

34 lines
1.7 KiB
Groovy

plugins {
id 'org.springframework.statemachine.sample'
}
description = 'Spring State Machine Data Persist Sample'
dependencies {
management platform(project(":spring-statemachine-platform"))
implementation project(':spring-statemachine-samples-common')
implementation project(':spring-statemachine-autoconfigure')
implementation project(':spring-statemachine-data-common:spring-statemachine-data-jpa')
implementation project(':spring-statemachine-data-common:spring-statemachine-data-redis')
implementation project(':spring-statemachine-data-common:spring-statemachine-data-mongodb')
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.springframework.boot:spring-boot-starter-data-redis')
implementation('org.springframework.boot:spring-boot-starter-data-mongodb') {
exclude group: 'org.mongodb', module: 'mongodb-driver-sync'
}
testRuntimeOnly 'org.mongodb:mongodb-driver-sync'
implementation('org.springframework.boot:spring-boot-devtools')
implementation('com.h2database:h2')
testImplementation(testFixtures(project(':spring-statemachine-core')))
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-engine'
testImplementation 'org.junit.platform:junit-platform-launcher'
}