Spring Boot 3.5 updated JUnit Jupiter from v5.11 to v5.12. With this new version, the junit-platform-launcher dependency must be declared explicitly.
24 lines
1.0 KiB
Groovy
24 lines
1.0 KiB
Groovy
plugins {
|
|
id 'org.springframework.statemachine.sample'
|
|
}
|
|
|
|
description = 'Spring State Machine Deploy Sample'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-statemachine-platform"))
|
|
implementation project(':spring-statemachine-samples-common')
|
|
implementation project(':spring-statemachine-uml')
|
|
implementation('org.springframework.boot:spring-boot-starter-web')
|
|
implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
|
|
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-engine'
|
|
testImplementation 'org.junit.platform:junit-platform-launcher'
|
|
}
|