Files
spring-restdocs/spring-restdocs-webtestclient/build.gradle
Andy Wilkinson c7bde714d6 Migrate tests to JUnit 5
Closes gh-959
2025-06-03 16:47:20 +01:00

23 lines
463 B
Groovy

plugins {
id "java-library"
id "maven-publish"
}
description = "Spring REST Docs WebFlux"
dependencies {
api(project(":spring-restdocs-core"))
api("org.springframework:spring-test")
api("org.springframework:spring-webflux")
internal(platform(project(":spring-restdocs-platform")))
testImplementation(testFixtures(project(":spring-restdocs-core")))
testRuntimeOnly("org.springframework:spring-context")
}
tasks.named("test") {
useJUnitPlatform();
}