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(); }