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.
23 lines
926 B
Groovy
23 lines
926 B
Groovy
plugins {
|
|
id 'org.springframework.shell.module'
|
|
}
|
|
|
|
description = 'Spring Shell Test Autoconfigure'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-shell-management"))
|
|
implementation project(':spring-shell-core')
|
|
implementation project(':spring-shell-standard')
|
|
implementation project(':spring-shell-test')
|
|
implementation project(':spring-shell-autoconfigure')
|
|
implementation 'org.springframework:spring-test'
|
|
implementation 'org.springframework.boot:spring-boot-autoconfigure'
|
|
implementation 'org.springframework.boot:spring-boot-test-autoconfigure'
|
|
implementation 'org.springframework.boot:spring-boot-test'
|
|
implementation 'org.junit.jupiter:junit-jupiter-engine'
|
|
implementation 'org.junit.platform:junit-platform-launcher'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.awaitility:awaitility'
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
|
}
|