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.
31 lines
1.3 KiB
Groovy
31 lines
1.3 KiB
Groovy
plugins {
|
|
id 'org.springframework.statemachine.module'
|
|
}
|
|
|
|
description = 'Spring Statemachine Core'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-statemachine-platform"))
|
|
api('org.springframework:spring-tx')
|
|
api('org.springframework:spring-messaging')
|
|
api('org.springframework:spring-context')
|
|
api('io.projectreactor:reactor-core')
|
|
optional 'org.springframework.security:spring-security-core'
|
|
compileOnly 'com.google.code.findbugs:jsr305'
|
|
testImplementation 'org.springframework:spring-web'
|
|
testImplementation 'org.springframework:spring-webmvc'
|
|
testImplementation 'org.springframework.boot:spring-boot-test'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
|
|
testImplementation 'org.junit.platform:junit-platform-launcher'
|
|
testImplementation 'org.mockito:mockito-junit-jupiter'
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
testImplementation 'org.awaitility:awaitility'
|
|
testImplementation 'org.springframework.security:spring-security-config'
|
|
testImplementation 'org.springframework.security:spring-security-test'
|
|
testImplementation 'io.projectreactor.tools:blockhound'
|
|
testImplementation 'jakarta.servlet:jakarta.servlet-api'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testFixturesImplementation 'org.assertj:assertj-core'
|
|
testFixturesImplementation 'io.projectreactor:reactor-test'
|
|
}
|