Skip to content

Commit 64aad6d

Browse files
committed
Add nullability annotations to tests in module/spring-boot-data-cassandra-test
See gh-47263
1 parent 0f41e90 commit 64aad6d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

module/spring-boot-data-cassandra-test/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,11 @@ dependencies {
4444

4545
testRuntimeOnly("ch.qos.logback:logback-classic")
4646
}
47+
48+
tasks.named("compileTestJava") {
49+
options.nullability.checking = "tests"
50+
}
51+
52+
tasks.named("compileDockerTestJava") {
53+
options.nullability.checking = "tests"
54+
}

0 commit comments

Comments
 (0)