From 1277b758a57d7ef1aaa1cd3917f877b43930cd76 Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Thu, 16 Oct 2025 09:25:37 +0200 Subject: [PATCH] Add nullability annotations to tests in smoke-test/spring-boot-smoke-test-data-r2dbc See gh-47263 --- smoke-test/spring-boot-smoke-test-data-r2dbc/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/smoke-test/spring-boot-smoke-test-data-r2dbc/build.gradle b/smoke-test/spring-boot-smoke-test-data-r2dbc/build.gradle index 5d6fc8f9c6d..66e8c5c3830 100644 --- a/smoke-test/spring-boot-smoke-test-data-r2dbc/build.gradle +++ b/smoke-test/spring-boot-smoke-test-data-r2dbc/build.gradle @@ -30,3 +30,7 @@ dependencies { testImplementation(project(":starter:spring-boot-starter-test")) testImplementation(project(":starter:spring-boot-starter-webflux-test")) } + +tasks.named("compileTestJava") { + options.nullability.checking = "tests" +}