From acef071a40e8a64b288ff8aa37f52c9772cee7b1 Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Thu, 16 Oct 2025 09:37:50 +0200 Subject: [PATCH] Add nullability annotations to tests in smoke-test/spring-boot-smoke-test-secure-webflux See gh-47263 --- smoke-test/spring-boot-smoke-test-secure-webflux/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/smoke-test/spring-boot-smoke-test-secure-webflux/build.gradle b/smoke-test/spring-boot-smoke-test-secure-webflux/build.gradle index 4a46915e6bc..31c7f038a5c 100644 --- a/smoke-test/spring-boot-smoke-test-secure-webflux/build.gradle +++ b/smoke-test/spring-boot-smoke-test-secure-webflux/build.gradle @@ -29,3 +29,7 @@ dependencies { testImplementation(project(":starter:spring-boot-starter-webflux-test")) testImplementation("io.projectreactor:reactor-test") } + +tasks.named("compileTestJava") { + options.nullability.checking = "tests" +}