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