Add nullability annotations to tests in module/spring-boot-data-neo4j

See gh-47263
This commit is contained in:
Moritz Halbritter 2025-09-19 12:41:46 +02:00
parent 09967b1a5d
commit aa06ab1e25
1 changed files with 8 additions and 0 deletions

View File

@ -49,3 +49,11 @@ dependencies {
testRuntimeOnly("ch.qos.logback:logback-classic") testRuntimeOnly("ch.qos.logback:logback-classic")
} }
tasks.named("compileTestJava") {
options.nullability.checking = "tests"
}
tasks.named("compileDockerTestJava") {
options.nullability.checking = "tests"
}