From f8bceead265792cc0366fe2ae7dd03839b54cd4e Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Wed, 15 Oct 2025 14:05:11 +0200 Subject: [PATCH] Add nullability annotations to tests in module/spring-boot-session-hazelcast See gh-47263 --- module/spring-boot-session-hazelcast/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/module/spring-boot-session-hazelcast/build.gradle b/module/spring-boot-session-hazelcast/build.gradle index 87b895ca845..318aa178fe7 100644 --- a/module/spring-boot-session-hazelcast/build.gradle +++ b/module/spring-boot-session-hazelcast/build.gradle @@ -42,3 +42,7 @@ dependencies { testRuntimeOnly("ch.qos.logback:logback-classic") } + +tasks.named("compileTestJava") { + options.nullability.checking = "tests" +}