From ad22bc033fc88ec49ee4738ff73b1b6e62157f4f Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Mon, 6 Oct 2025 11:47:27 +0200 Subject: [PATCH] Add nullability annotations to tests in module/spring-boot-data-jdbc See gh-47263 --- module/spring-boot-data-jdbc/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/module/spring-boot-data-jdbc/build.gradle b/module/spring-boot-data-jdbc/build.gradle index f72e17e4a73..840f2e25582 100644 --- a/module/spring-boot-data-jdbc/build.gradle +++ b/module/spring-boot-data-jdbc/build.gradle @@ -56,3 +56,8 @@ dependencies { tasks.named("compileTestJava") { options.nullability.checking = "tests" } + +tasks.named("compileDockerTestJava") { + options.nullability.checking = "tests" +} +