Files
spring-shell/spring-shell-samples/spring-shell-sample-e2e/spring-shell-sample-e2e.gradle
Mahmoud Ben Hassine 8f4e1b78fa Update test dependencies for the latest Spring Boot 3.5 snapshots
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.
2025-04-22 20:04:09 +02:00

19 lines
734 B
Groovy

plugins {
id 'org.springframework.shell.sample'
}
description = 'Spring Shell Sample E2E'
dependencies {
management platform(project(":spring-shell-management"))
implementation project(':spring-shell-starters:spring-shell-starter-jna')
testImplementation project(':spring-shell-starters:spring-shell-starter-test')
testImplementation('org.springframework.boot:spring-boot-test')
testImplementation('org.junit.jupiter:junit-jupiter-engine')
testImplementation('org.junit.jupiter:junit-jupiter-params')
testImplementation('org.junit.platform:junit-platform-launcher')
testImplementation("org.mockito:mockito-junit-jupiter")
testImplementation('org.assertj:assertj-core')
testImplementation 'org.awaitility:awaitility'
}