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.
26 lines
1.1 KiB
Groovy
26 lines
1.1 KiB
Groovy
plugins {
|
|
id 'org.springframework.statemachine.module'
|
|
}
|
|
|
|
description = 'Spring State Machine Data Common'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-statemachine-platform"))
|
|
api project(':spring-statemachine-core')
|
|
api project(':spring-statemachine-kryo')
|
|
api 'org.springframework.data:spring-data-commons'
|
|
api 'com.fasterxml.jackson.core:jackson-core'
|
|
api 'com.fasterxml.jackson.core:jackson-databind'
|
|
testImplementation (project(':spring-statemachine-test'))
|
|
testFixturesImplementation (project(':spring-statemachine-test'))
|
|
testImplementation(testFixtures(project(':spring-statemachine-core')))
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
testImplementation 'org.springframework.boot:spring-boot-test'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
|
|
testImplementation 'org.junit.platform:junit-platform-launcher'
|
|
testFixturesImplementation 'org.springframework.boot:spring-boot-test'
|
|
testFixturesImplementation 'org.junit.jupiter:junit-jupiter-engine'
|
|
testFixturesImplementation 'org.junit.platform:junit-platform-launcher'
|
|
testRuntimeOnly 'org.springframework.boot:spring-boot-starter-web'
|
|
}
|